I made a web app in php & javascript where all the files were uploaded locally to each web site. The ckeditor folder was a sub folder within the application folder. On my form, the ckeditor worked correctly.
Now I am changing the app quite a bit, so that it is a javascript run remotely from any domain, kind of like the way the Facebook Like button works when you put it on a web page. Now my form is loading remotely, and for some reason now Firebug is reporting this ckeditor error in red:
ReferenceError: CKEDITOR is not defined
http://www.webanautics.com/guestbook/ckeditor/config.js?_=1367321890529
Line 6
Line 6 is within my config.js file, which is CKEDITOR.editorConfig = function( config ) {
Here's the order of my script loading, which is the same as it was when it was working :
<script src="http://www.webanautics.com/guestbook/ckeditor/ckeditor.js"></script>
<script src="http://www.webanautics.com/guestbook/ckeditor/config.js"></script>
<script src="http://www.webanautics.com/guestbook/ckeditor/adapters/jquery.js"></script>
<script src="http://www.webanautics.com/guestbook/ckeditor/plugin2.js"></script>
What looks like is happening is the ckeditor.js script is not loading for some reason.
So, my remote form is finding my .js files, including ckeditor.js and config.js. I don't know what's wrong (obviously!).
Any help would be appreciated.