Initially, I had trouble getting WYMeditor to work because ajax requests by WYMeditor were all POSTing to IIS which were then rejected. I fixed the problem by setting type:'GET' on all ajax requests made by WYMeditor.
I'm just suggesting maybe the following lines should be changed in the next release to explicitly use the GET request?
Line 1100:
- Code: Select all
eval(jQuery.ajax({type:'GET', url:this._options.langPath
Line 1307:
- Code: Select all
CssParser.parse(jQuery.ajax({type:'GET', url: this._options.stylesheet,async:false}).responseText);
Line 1399:
- Code: Select all
eval(jQuery.ajax({type:'GET', url:this._options.skinPath