CakePHP 2 fork that supports PHP 8
Find a file
phpnut 11d295eb0c Fixes #3507 Session Security.level "high", session destroyed on media 404.
Added ability to turn off HTTP_USER_AGENT check in a Controller::beforeFilter(),
Added id() to Session helper and component to return current Session id, the component accepts a $id parameter to force setting the Session id which must be called in a Controller::beforeFilter().
Sessions id are not longer renewed if a request is from Ajax, or from requestAction();
When Security.level (1.2) or CAKE_SECURITY (1.1) is set the 'high' renewing of Session id only happens if request is 2 seconds after the last request.
Added $_Session[Config][timeout] which forces renewing Session if request are within the 2 second limit and over 10 request.
If an application is expected to make multiple request (more than 10) to the server in a single proccess, Configure::write('Security.level', 'medium'); (1.2) or $this->Session->security = 'medium'; (1.1) should be used in a beforeFilter for the specific methods.
1.2 Sessions allow using CacheEngines to store Sessions, be aware that using memory caching as the only storage of Sessions is not reliable. Further work will be done to allow using the CacheEngines with database Sessions, etc.

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5982 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-12 01:36:20 +00:00
app updating error handling: messages, templates and css, updating home page messages 2007-11-04 07:03:57 +00:00
cake Fixes #3507 Session Security.level "high", session destroyed on media 404. 2007-11-12 01:36:20 +00:00
docs Correcting all headers in the files 2007-02-02 10:39:45 +00:00
vendors Renaming vendors/console to vendors/shells 2007-05-12 20:00:55 +00:00
.htaccess Merging fixes into 1.x.x.x branched code: 2006-05-26 05:29:17 +00:00
index.php updating bootstrap and index 2007-08-16 08:39:12 +00:00

///////////////////////////////////////////////////////////////////////////////////////////////////////////
// +---------------------------------------------------------------------------------------------------+//
// + $Id$
// + Last Modified: $Date$
// + Modified By: $LastChangedBy$
// +---------------------------------------------------------------------------------------------------+//
///////////////////////////////////////////////////////////////////////////////////////////////////////////

This README will be updated

For now visit:
https://www.cakephp.org/

User related documentation
http://manual.cakephp.org/

For information on development:
https://trac.cakephp.org/