Reputation: 31
I've upgraded Sitecore 6.5 rev 111230 to Sitecore 6.6 rev 120918
Since the upgrade the Rich Text editor stopped working. Sitecore returns a page not found error.
I checked the config files, and they haven't changed - it is pointing to the right editor profile (I'm using Rich Text editor default).
Has anyone come across this issue before?
Upvotes: 1
Views: 687
Reputation: 1262
Have you enabled MVC? I found that I had to remove the line:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
from the RegisterRoutes
function in the Global.asax.cs
file.
Upvotes: 1
Reputation: 4823
What we normally do in a situation like that is look for obvious mistakes like: "Did we forget to put the correct .dll files in the bin folder" or compare the clean 6.6 rev. web.config with the web.config currently in your solution. Maybe you forgot one of the steps listed in the upgrade process and therefor a compare can sometimes help you address this kind of mistakes.
Upvotes: 2