The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file.
Has anyone else seen this error? I've opened ckfinder.config, but I am not sure if I should change anything. I am using .NET 2.0.
Tia,
Nikos.
Re: The file browser is disabled for security reasons.
Yes, that's why ckfinder.config exists for
At least you should enable CKFinder:
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: The file browser is disabled for security reasons.
Re: The file browser is disabled for security reasons.
I'm having the same problem. But I am using PHP, someone help me?
ERROR: "The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file."
My config.php:
$baseUrl = '/userfiles/';
Tank's
Re: The file browser is disabled for security reasons.
You need to read thru CK Finders Config file thouroughly
and enable it and PROTECT it
you can read my post here on how we protected our ck finder here
http://www.fckeditor.net/forums/viewtopic.php?f=10&t=10714
Always read the config and follow it...
Integration of CK Finder with FCK is easy
protecting the file browser is a necessary step and should be taken with care to do it properly
WebDude
Re: The file browser is disabled for security reasons.
i am including 2 files below:
ckeditor/ckeditor.js
ckfinder/ckfinder.js
Code like:
When i browse server the same error comes..
"The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file"
Where to change the settings..
Re: The file browser is disabled for security reasons.
Check config.php / config.asp / config.cfm / config.ascx depending on which version you have downloaded and last but not least, take some time to read the documentation
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: The file browser is disabled for security reasons.
My config.php file is set to
function CheckAuthentication()
{
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized'];
// ... where $_SESSION['IsAuthorized'] is set to "true" as soon as the
// user logs in your system. To be able to use session variables don't
// forget to add session_start() at the top of this file.
//return false;
}
$config['RoleSessionVar'] = 'CKFinder_UserRole';
session_start();
and I have
userfiles =777
I see nowhere one can say enabled = true as on an earlier post in this thread.
Thanks
Re: The file browser is disabled for security reasons.
He found there was no no "IsAuthorized" variable on our site so temporarily have to set it to just
return true;
Now have to work out how to set a IsAuthorized variable to the site :>
Cheers
Chris
in ur config.php file. the
in ur config.php file. the function checkAuthentication() is set to return false. change it to return true. it worked for me
asp.net c# : facing same error
I don't where the enable option is. I am seeing anything which says enabled = false
asp.net c# : facing same error
The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file