Sessions

This website contains links to software which is either no longer maintained or will be supported only until the end of 2019 (CKFinder 2). For the latest documentation about current CKSource projects, including software like CKEditor 4/CKEditor 5, CKFinder 3, Cloud Services, Letters, Accessibility Checker, please visit the new documentation website.

If you look for an information about very old versions of CKEditor, FCKeditor and CKFinder check also the CKEditor forum, which was closed in 2015. If not, please head to StackOverflow for support.

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.

This page was last edited on 28 May 2010, at 08:11.