I had a customer request spellcheck when they create a newsletter, so I enabled the option in the TinyMCE settings for the "Richeditor Newsleter Studio" datatype.
But when the spellcheck button is clicked in TinyMCE now, it causes an exception:
System.Web.HttpException: The file
'/umbraco/NewsletterStudio/Pages/GoogleSpellChecker.ashx' does not exist.
I am able to use the spellcheck option in TinyMCE for normal Umbraco content. In this case it accesses it at /umbraco/googlespellchecker.ashx.
Spellcheck doesn't work in TinyMCE
I had a customer request spellcheck when they create a newsletter, so I enabled the option in the TinyMCE settings for the "Richeditor Newsleter Studio" datatype.
But when the spellcheck button is clicked in TinyMCE now, it causes an exception:
System.Web.HttpException: The file '/umbraco/NewsletterStudio/Pages/GoogleSpellChecker.ashx' does not exist.
I am able to use the spellcheck option in TinyMCE for normal Umbraco content. In this case it accesses it at /umbraco/googlespellchecker.ashx.
I created a urlrewriting rule in /config/urlrewriting.config that fixes the issue.
<add name="newsspellcheck" virtualUrl="^/umbraco/NewsletterStudio/Pages/GoogleSpellChecker.ashx" destinationUrl="~/umbraco/GoogleSpellChecker.ashx" ignoreCase="true" />
The way that spellcheck toggle button toggles sometimes and sometimes doesn't is screwed up, but that's certainly not a Newsletter Studio issue.
Hi!
Thank you DanH!
Looks like this issue is related to the implementation of the spellcheker but you solution is great!
Thanks for sharing it1
// Markus
is working on a reply...