CodeIgniter Forums
CKEDITOR + KCFINDER with INDEX.PHP removed - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: Issues (https://forum.codeigniter.com/forumdisplay.php?fid=19)
+--- Thread: CKEDITOR + KCFINDER with INDEX.PHP removed (/showthread.php?tid=68183)



CKEDITOR + KCFINDER with INDEX.PHP removed - christianr06 - 06-06-2017

I have developed an application using CI3, CKEDITOR 4.4, KCFINDER version 2.51
I have removed the index.php in the URL by using .htaccess
The editor part works perfectly but I can't get KCFINDER browse function to work with images or files server


Click on browse calls http://mysite/assets/kcfinder/browse.php?CKEditor=editor1&CKEditorFuncNum=1&langCode=fr
This results in error 404 page not found

My htaccess is
#   Active URL rewrite
    RewriteEngine On
    RewriteBase /

#   do not rewrite for following path
#    RewriteCond %{REQUEST_URI} !^/assets/kcfinder/
#   All URL's below are not rewritten
    RewriteCond $1 !^(index\.php|.*\.css|.*\.js|.*\.jpg|.*\.JPG|.*\.gif|.*\.png|.*\.pdf|browse\.php|robots\.txt|.*\.txt)
#   All other are directed to index.php.
    RewriteRule ^(.*)$ index.php/$1 [L]

I AM PRETTY SURE THAT MY PROBLEM COMES FROM THE URL REWRITE THAT CHANGES THE http://mysite/assets/kcfinder/browse.php
BUT I DON'T FIND OUT HOW TO AVOID IT
If I uncomment RewriteCond %{REQUEST_URI} !^/assets/kcfinder/ call to the browser display contents of browser.php as text !

Hope someone can help
Thanks