Welcome Guest, Not a member yet? Register   Sign In
CKEditor Javascript Problem
#3

[eluser]CroNiX[/eluser]
Actually, remove that line entirely. All real files and directories will be ignored by CI and are covered by the 2 previous lines (-F, -D), so this is doing nothing but getting in the way.

Code:
RewriteCond $1 !^(index\.php|image|robots\.txt|css)

If you're using CI2+, these lines are also doing nothing as the system directory has it's own htaccess preventing direct access:
Code:
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule (.*) index.php?/$1 [L]

So really, this is all you should need:
Code:
SetEnv MAGIC_QUOTES 0
SetEnv PHP_VER 5
Options +FollowSymlinks -MultiViews
RewriteEngine On
DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?/$1 [L]


Messages In This Thread
CKEditor Javascript Problem - by El Forum - 06-04-2012, 10:43 PM
CKEditor Javascript Problem - by El Forum - 06-05-2012, 12:03 AM
CKEditor Javascript Problem - by El Forum - 06-05-2012, 09:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB