New installation - read the documentation and followed the installation instructions line by line. When accessing ckFinder via ckEditor, I get:
"The file browser is disabled for security reasons."
There wasn't reference to "enabled" in the config file, so I added
$config['enabled'] = true;
Still same problem. So I looked through the code and eventually found two more config files in the core/php/... subfolders (one each for php4 and php5). Here there were references to $_isEnabled = false;. I changed both to $_isEnabled = true;, but still get the same error (above).
What else am I missing? I am invoking ckFinder with:
CKFinder::SetupCKEditor($CKEditor, '/includes/ckfinder/');
All of the folders have correct permissions for write/read access by the web service.
Help greatly appreciated.
"The file browser is disabled for security reasons."
There wasn't reference to "enabled" in the config file, so I added
$config['enabled'] = true;
Still same problem. So I looked through the code and eventually found two more config files in the core/php/... subfolders (one each for php4 and php5). Here there were references to $_isEnabled = false;. I changed both to $_isEnabled = true;, but still get the same error (above).
What else am I missing? I am invoking ckFinder with:
CKFinder::SetupCKEditor($CKEditor, '/includes/ckfinder/');
All of the folders have correct permissions for write/read access by the web service.
Help greatly appreciated.
Re: "The file browser is disabled for security reasons.&quo
Found this thread viewtopic.php?f=10&t=22271&p=56681&hilit=+The+file+browser+is+disabled+for+security+reasons.+#p56681 -- see the problem. I will implement a sessions based check to enable the browser.
thanks.