2

I installed CKEditor and CKFinder in my site, and when I ran a sample of CKFinder to test the browse image functionality, it is saying:

The file browser is disabled for security reasons.

I could not find the way of enabling file browser, please can anyone provide the solution?

halfer
  • 19,824
  • 17
  • 99
  • 186
shasi kanth
  • 6,987
  • 24
  • 106
  • 158

1 Answers1

3

That is why ckfinder.config/php.config exists for. You should enable ckFinder this way:

enabled = "false"

and configure your basedirectory according to your files (i.e.)

$baseUrl = '/ckfinder/userfiles/';

Another helpful thread.

Thariama
  • 50,002
  • 13
  • 138
  • 166
  • 3
    Thanks Thariama for your hint, I observed that the ckfinder is already enabled, and actually found out the solution, by setting the return value to true (originally false) in the function CheckAuthentication() in the ckfinder/config.php file. Though i need to put some logic there, for not allowing all users to upload the files. – shasi kanth Nov 24 '10 at 10:47