The forum operates in read-only mode. Please head to StackOverflow for support.
<rule name="Webroot Files - AdminCK" enabled="true" stopProcessing="true"> <match url="^admin/js/ckfinder/(.*)$" /> <action type="Rewrite" url="/app/webroot/admin/js/ckfinder/{R:1}" appendQueryString="true" /> </rule>
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help. Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: "Invalid command" message using PHP + IIS
I managed to get what was wrong! The IIS URL Rewrite module was messing with the Query String.
As I use, CakePHP, my web.config file has several rules to create the friendly URLs. So this is the rule I added above all others to make it work:
<rule name="Webroot Files - AdminCK" enabled="true" stopProcessing="true"> <match url="^admin/js/ckfinder/(.*)$" /> <action type="Rewrite" url="/app/webroot/admin/js/ckfinder/{R:1}" appendQueryString="true" /> </rule>Notice the appendQueryString="true", before it was set to "false" and therefore I was having that problem.
Now everything is fine! =D
Re: "Invalid command" message using PHP + IIS
glad to hear that you managed to sort it out. Thanks for posting your solution, it is most helpful for others who might struggle with the same issue in the future!
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!