I have built a website in CakePHP 2.0, and uploaded it to a webserver which doesn't use .htaccess files - instead I have to use rewrite.script files. This works fine, except for the CKEditor, which seems to generate its own, incorrect, path.
When I include CKEditor, it auto-generates 3 paths in the section. In this case, these are:
<script type="text/javascript" src="http://mysite.com/js/ckeditor/config.js?t=B8DJ5M3"></script>
<link rel="stylesheet" type="text/css" href="http://mysite.com/js/ckeditor/skins/kama/editor.css?t=B8DJ5M3">
<script type="text/javascript" src="http://mysite.com/js/ckeditor/lang/en.js?t=B8DJ5M3"></script>
When using .htaccess files, Cake would know that it needed to look in 'webroot' for the 'js' folder, but the rewrite.script files don't seem to pick up on that.
So, I think my question is, how do I get rewrite.script files to automatically look in webroot in cases like this? Or does anyone have any other ideas about what might be going on here? For instance, can I force CKEditor to generate different urls (containing 'app/webroot')?
Thanks for any help!