(Created page with '== Enabling sessions == It is quite possible, that you'll use session variables in the configuration file (config.php), for example when setting up the [[CKFinder_2.x/Developers…') |
(No difference)
|
Revision as of 20:37, 14 May 2010
Enabling sessions
It is quite possible, that you'll use session variables in the configuration file (config.php), for example when setting up the Access Control or writing the CheckAuthentication() function.
Please remember that you have to start your session before use of $_SESSION becomes available. In most cases it can be done by uncommenting the "session_start()" call in the configuration file:
session_start();
Once enabled, session variables can be accessed using the global $_SESSION array:
$_SESSION['CKFinder_UserRole'] = "admin";
Please do not call session_start() in the CheckAuthentication() function body, it is recommended to call session_start() at the beginning of config.php instead.
More information about session handling can be found in PHP manual.