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

from CPT1 to CPT2 -- RadEditor

2 Answers 42 Views
Sharepoint Integration
This is a migrated thread and some comments may be shown as answers.
Clint
Top achievements
Rank 1
Clint asked on 25 Jul 2011, 07:46 PM
I was hoping to not need to redo all of my Telerik RadEditor web parts but that might be the case.  My thought was that by adding...
<dependentAssembly>
        <assemblyIdentity name="RadEditorSharepoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
        <bindingRedirect oldVersion="6.1.3.0" newVersion="6.1.6.0" />
      </dependentAssembly>

Stil says it can't find 6.1.3.0.

What do I have wrong or am I out of luck?

2 Answers, 1 is accepted

Sort by
0
Accepted
Lini
Telerik team
answered on 26 Jul 2011, 09:17 AM
Hi,

Try using a wider binding redirect - from any version to the current one (6.1.6). Also check that you are modifying the correct Web.config file (e.g. c:\inetpub\wwwroot\wss\VirtualDirectories\80\web.config).

<dependentAssembly>
    <assemblyIdentity name="RadEditorSharepoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
    <bindingRedirect oldVersion="1.0.0.0-6.1.6.0" newVersion="6.1.6.0" />
</dependentAssembly>

Finally, check if you have a <SafeControl> for the OLD version as well as the new:

<safecontrol assembly="RadEditorSharePoint, Version=6.1.3.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" namespace="Telerik.SharePoint" typename="*" safe="True" />
 
<safecontrol assembly="RadEditorSharePoint, Version=6.1.6.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" namespace="Telerik.SharePoint" typename="*" safe="True" />

The online help page with instructions for upgrade of the SP RadEditor is at http://www.telerik.com/help/aspnet-ajax/moss-sp2010-upgrading-radeditor-newer-version.html

All the best,
Lini
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

0
Clint
Top achievements
Rank 1
answered on 26 Jul 2011, 12:10 PM
DOH!  Sure enough the safe controls went bye-bye somehow.  I should have looked harder for the upgrade instructions.  Thanks for the help and the gentle reminder about the upgrade documentation.  Sorry for such a silly question that was already covered!
Tags
Sharepoint Integration
Asked by
Clint
Top achievements
Rank 1
Answers by
Lini
Telerik team
Clint
Top achievements
Rank 1
Share this question
or