dev-master
9999999-dev https://github.com/lumaxw3b/croogo_clearsessionClearSession plugin for Croogo CMS 2.x versions.
MIT
The Requires
- php >=5.3.0
- croogo/croogo ~2.0
- composer/installers *
by Lukas Marks
cakephp session croogo clear session
ClearSession plugin for Croogo CMS 2.x versions.
Croogo CMS ClearSession plugin for session record delete from the database table., (*2)
This plugin works with a specific CakePHP/ Croogo session storage configuration. Before installing this plugin change the session configuration in app/Config/croogo.php, (*3)
``` php Configure::write('Session', array( 'defaults' => 'database', // 'timeout' => 30, // The session will timeout after 30 minutes of inactivity // 'cookieTimeout' => 1440, // The session cookie will live for at most 24 hours, this does not effect session timeouts 'checkAgent' => false, // 'autoRegenerate' => true, // causes the session expiration time to reset on each page load 'ini' => array( 'session.cookie_secure' => false, 'session.cookie_httponly' => true ), ));, (*4)
After setting up the Croogo configuration we have to create the cake_sessions database table ``` sql CREATE TABLE `cake_sessions` ( `id` varchar(255) NOT NULL DEFAULT '', `data` text, `expires` int(11) DEFAULT NULL, PRIMARY KEY (`id`) );
Install the ClearSession Plugin and delete all selected sessions from the database table with one klick., (*5)
Please report any issues you have with the plugin to the issue tracker on github., (*6)
Asset Compress is offered under an MIT license., (*7)
2015 Lukas Marks (http://lumax-web.de/), (*8)
See the github contributors list, (*9)
See CHANGELOG for changes only available on master
. See
github releases for changelogs on previous releases., (*10)
ClearSession plugin for Croogo CMS 2.x versions.
MIT
cakephp session croogo clear session