This is a migrated thread and some comments may be shown as answers.

Moss Editor Lite to MOSS Editor 5.3 Parser Error on install

2 Answers 67 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Justin
Top achievements
Rank 1
Justin asked on 25 Nov 2008, 10:43 PM
I have just retracted the MOSS Editor Lite Solution (we only used it to edit list items - no webpart usage) and have added the new solution (trial version of MOSS Editor 5.3) with the aim of testing functionality before purchasing it.

However as soon as the solution is deployed every page in our site fails with the following parser error: (It varies slightly on different pages - [different line numbers, but always at a line that registers tag prefixes])

 

Server Error in '/' Application.

Parser Error

Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: This page has encountered a critical error. Contact your system administrator if this problem persists.

Source Error:

Line 1: <%@ Page Inherits="Microsoft.SharePoint.Publishing.TemplateRedirectionPage,Microsoft.SharePoint.Publishing,Version=12.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" %> <%@ Reference VirtualPath="~TemplatePageUrl" %> <%@ Reference VirtualPath="~masterurl/custom.master" %>Line 2:  <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"><head>
Line 3:  <!--[if gte mso 9]><xml>

Source File: /Pages/Default.aspx    Line: 1


When I retract the new solution (reverting back to default MS Editor) the site works as expected

Any Ideas??

This is a significant set back for us, my only saving grace is that i have done this on our development server. However we are requiring the functionality of the full version MOSS Editor asap in our production environment.

Many thanks for any help offered

Justin

2 Answers, 1 is accepted

Sort by
0
Accepted
Lini
Telerik team
answered on 28 Nov 2008, 11:47 AM
Hello Justin,

This error indicates that one of the required assemblies for the RadEditor is missing. I am guessing that this is the ASP.NET AJAX Extensions (System.Web.Extensions.dll). See the following article and make sure that you have installed and configured ASP.NET AJAX correctly for the MOSS web application - http://www.telerik.com/help/aspnet-ajax/moss-install-aspnet-ajax.html.

If you are using the .NET Framework 3.5, you alredy have the System.Web.Extensions assembly. In this case you need to check if you have a bindingRedirect element in the web.config file from version 1.0 to version 3.5 of the AJAX Extensions:

... 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
      <dependentAssembly> 
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/> 
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/> 
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> 
      </dependentAssembly> 
    </assemblyBinding> 


Sincerely yours,
Lini
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Justin
Top achievements
Rank 1
answered on 04 Dec 2008, 02:54 AM
Great, many thanks for the support. This was the solution.
Tags
Editor
Asked by
Justin
Top achievements
Rank 1
Answers by
Lini
Telerik team
Justin
Top achievements
Rank 1
Share this question
or