Tinymce: Spellchecker is not working

女生的网名这么多〃 提交于 2019-12-12 14:18:32

问题


I am using spellchecker for tinymce in my application. The spellchecker internally using Moxiecode.TinyMCE.dll.

It was working fine before our last live update. Suddenly it's giving error saying You must write ContentLength bytes to the request stream before calling [Begin]GetResponse.

Here is the stacktrace which is appearing with the error detail in popup

System.Net.HttpWebRequest.GetResponse() +6038604 Moxiecode.TinyMCE.SpellChecker.GoogleSpellChecker.SendRequest(String lang, String data) +762 Moxiecode.TinyMCE.SpellChecker.GoogleSpellChecker.CheckWords(String lang, String[] words) +197 Moxiecode.TinyMCE.SpellChecker.SpellCheckerModule.ProcessRequest(HttpContext context) +500 Moxiecode.TinyMCE.Web.HttpHandler.ProcessRequest(HttpContext context) +282 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +100 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.504

I search for the resolution of error but didn't found any solution.

Can anyone suggest workaround for this.


回答1:


I had searched for the solution of issue, but there isn’t any problem with our application. Basically the point is, we are using a spell checker web service provided by Google with our WYSIWYG editor. I found that, from yesterday somehow the service not working properly or stopped by Google.

Here are some links which have some notes about user experiences

http://www.tinymce.com/develop/bugtracker_view.php?id=5793 http://www.tinymce.com/forum/viewtopic.php?id=30779




回答2:


You CAN enable the browser's built-in spellchecker by doing the following:

tinymce.init({
    browser_spellcheck : true,
});

Be sure to remove spellchecker from your toolbar and your plugins list.



来源:https://stackoverflow.com/questions/15827971/tinymce-spellchecker-is-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!