06-04-2012, 10:43 PM
[eluser]seminalJim[/eluser]
Hi guys,
Ive just installed CKEditor on my CI site, and after some tweaking it works great.
Thing is however when i upload to server, and test it online it doesnt work.
I get the textarea, but its not changed to CK.
I used firebug's javascript profiler and it says:
"NetworkError: 404 Not Found - http://www.snapse.net/javascript/ckeditor/ckeditor.js"
Im not sure, but im guessing it may be something to do with access to that file or folder as when I type in into the url i get...
404 Page not Found
My .htaccess file is so...
I know nothing of how this works, I just copied it from site.
Hi guys,
Ive just installed CKEditor on my CI site, and after some tweaking it works great.
Thing is however when i upload to server, and test it online it doesnt work.
I get the textarea, but its not changed to CK.
I used firebug's javascript profiler and it says:
"NetworkError: 404 Not Found - http://www.snapse.net/javascript/ckeditor/ckeditor.js"
Im not sure, but im guessing it may be something to do with access to that file or folder as when I type in into the url i get...
404 Page not Found
My .htaccess file is so...
Code:
SetEnv MAGIC_QUOTES 0
SetEnv PHP_VER 5
Options +FollowSymlinks -MultiViews
RewriteEngine On
DirectoryIndex index.php
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule (.*) index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|image|robots\.txt|css)
RewriteRule (.*) index.php?/$1 [L]
I know nothing of how this works, I just copied it from site.