v5:session:session_index
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
v5:session:session_index [2016/05/22 17:18] – mnewnham | v5:session:session_index [2024/10/08 09:21] (current) – [Using Encrypted Sessions] dregad | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Session Management ====== | ====== Session Management ====== | ||
- | ~~NOTOC~~ | ||
<WRAP right box> | <WRAP right box> | ||
[[v5: | [[v5: | ||
Line 9: | Line 8: | ||
ADOdb session management extends the standard functionality of PHP sessions, by allowing the normal session data seen to be stored in a database itself. There are numerous ways that this method enhances the default behavior | ADOdb session management extends the standard functionality of PHP sessions, by allowing the normal session data seen to be stored in a database itself. There are numerous ways that this method enhances the default behavior | ||
- | * Simplified clean-up at end =of session life | + | * Simplified clean-up at end of session life |
* Easy analysis of session data | * Easy analysis of session data | ||
* Simple session termination | * Simple session termination | ||
Line 24: | Line 23: | ||
An alternative to using a database backed session handler is to use [[v5: | An alternative to using a database backed session handler is to use [[v5: | ||
+ | <WRAP important> | ||
+ | The original session management routines that use '' | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Driver Support ===== | ||
+ | The following drivers are known to work with the adodb-session2.php file: | ||
+ | - mysqli | ||
+ | - pdo_mysqli (From ADOdb version 5.21) | ||
+ | - postgres | ||
+ | - oci8 | ||
+ | |||
+ | This is not an exhaustive list, if you are using the system with a different database, let us know so we can add it to the list. | ||
===== Usage ===== | ===== Usage ===== | ||
Line 73: | Line 85: | ||
and you are NOT using oci8 driver | and you are NOT using oci8 driver | ||
- | ==== Usage Examples | + | ==== Non-persistent Connections==== |
- | To force non-persistent connections, | + | To force non-persistent connections, |
<code php> | <code php> | ||
- | |||
include_once " | include_once " | ||
$driver | $driver | ||
Line 87: | Line 98: | ||
ADOdb_Session:: | ADOdb_Session:: | ||
- | ADOdb_session::Persist($connectMode=false); | + | ADOdb_Session::persist(false); |
session_start(); | session_start(); | ||
- | |||
</ | </ | ||
==== DSN Support ==== | ==== DSN Support ==== | ||
Line 101: | Line 111: | ||
</ | </ | ||
- | <WRAP important> | + | |
- | The original session management routines that use '' | + | |
- | </ | + | |
===== Using Encrypted Sessions ===== | ===== Using Encrypted Sessions ===== | ||
- | To use a encrypted sessions, replace the file '' | + | To use encrypted sessions, replace the file '' |
<code php> | <code php> | ||
Line 137: | Line 145: | ||
Create this table in your database. | Create this table in your database. | ||
- | ==== MySQL ==== | + | ==== MySQL or PDO MySQL ==== |
- | + | ||
- | CREATE TABLE sessions2( | + | < |
- | | + | CREATE TABLE sessions2 ( |
- | | + | sesskey VARCHAR( 64 ) COLLATE utf8mb4_bin |
- | | + | expiry DATETIME NOT NULL , |
- | | + | expireref VARCHAR( 250 ) DEFAULT '', |
- | | + | created DATETIME NOT NULL , |
- | | + | modified DATETIME NOT NULL , |
- | | + | sessdata LONGTEXT, |
- | | + | PRIMARY KEY ( sesskey ) , |
- | | + | INDEX sess2_expiry( expiry ), |
- | ) | + | INDEX sess2_expireref( expireref ) |
+ | ) | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | When [[https:// | ||
+ | Collisions could occur in this case, due to MySQL performing case-insensitive searches by default. | ||
+ | To avoid that, the //sesskey// column should use binary (or a case-sensitive) collation. | ||
+ | </ | ||
==== PostgreSQL ==== | ==== PostgreSQL ==== | ||
Line 187: | Line 204: | ||
===== Notifications ===== | ===== Notifications ===== | ||
- | You can receive notification when your session is cleaned up by the session garbage collector or when you call session_destroy(). | + | You can receive notification when your session is cleaned up by the session garbage collector or when you call //session_destroy()//. |
- | PHP's session extension will automatically run a special garbage collection function based on your php.ini session.cookie_lifetime and session.gc_probability settings. This will in turn call adodb's garbage collection function, which can be setup to do notification. | + | PHP's session extension will automatically run a special garbage collection function based on your php.ini session.cookie_lifetime and session.gc_probability settings. This will in turn call ADOdb's garbage collection function, which can be setup to perform |
- | PHP Session --> ADOdb Session | + | |
- | GC Function | + | GC Function |
- | executed at | + | executed at |
- | random time | + | random time |
+ | Extension | ||
When a session is created, we need to store a value in the session record (in the EXPIREREF field), typically the userid of the session. Later when the session has expired, just before the record is deleted, we reload the EXPIREREF field and call the notification function with the value of EXPIREREF, which is the userid of the person being logged off. | When a session is created, we need to store a value in the session record (in the EXPIREREF field), typically the userid of the session. Later when the session has expired, just before the record is deleted, we reload the EXPIREREF field and call the notification function with the value of EXPIREREF, which is the userid of the person being logged off. | ||
Line 218: | Line 236: | ||
$user = $ADODB_SESS_CONN-> | $user = $ADODB_SESS_CONN-> | ||
- | $ADODB_SESS_CONN-> | + | $ADODB_SESS_CONN-> |
system(" | system(" | ||
} | } | ||
- | </ | + | </ |
- | NOTE 1: If you have register_globals disabled in php.ini, then you will have to manually set the EXPIREREF. e.g. | + | |
+ | <WRAP info> | ||
+ | EXPIREREF | ||
<code php> | <code php> | ||
Line 229: | Line 249: | ||
</ | </ | ||
- | NOTE 2: If you want to change | + | In older versions of ADOdb this could be achieved automatically through |
+ | </ | ||
+ | <WRAP info> | ||
+ | If you want to change the EXPIREREF after the session record has been created, you will need to modify any session variable to force a database record update. | ||
+ | </ | ||
===== Neat Notification Tricks ===== | ===== Neat Notification Tricks ===== | ||
Line 257: | Line 281: | ||
will compress and then encrypt the record in the database. | will compress and then encrypt the record in the database. | ||
- | ===== Session Cookie Regeneration ===== | ||
- | The method '' | ||
- | ==== Usage ==== | ||
- | |||
- | <code php> | ||
- | include ' | ||
- | |||
- | session_start(); | ||
- | /* | ||
- | * Approximately every 10 page loads, reset cookie for safety. | ||
- | * This is extremely simplistic example, better | ||
- | * to regenerate only when the user logs in or changes | ||
- | * user privilege levels. | ||
- | */ | ||
- | if ((rand()%10) == 0) | ||
- | adodb_session_regenerate_id(); | ||
- | </ | ||
- | |||
- | This function calls '' | ||
- | |||
- | ===== Vacuum/ | ||
- | |||
- | During session garbage collection, if postgresql is detected, ADOdb can be set to run VACUUM. If mysql is detected, then optimize database could be called.You can turn this on or off using: | ||
- | <code php> | ||
- | $turnOn = true; # or false | ||
- | ADODB_Session:: | ||
- | </ | ||
- | The default is optimization is disabled. | ||
- | ===== Backwards | + | ===== Backwards |
The older method of connecting to ADOdb using global variables is now deprecated, and **will be removed** in ADOdb version 6.0: | The older method of connecting to ADOdb using global variables is now deprecated, and **will be removed** in ADOdb version 6.0: | ||
Line 296: | Line 292: | ||
$ADODB_SESSION_USER =' | $ADODB_SESSION_USER =' | ||
$ADODB_SESSION_PWD =' | $ADODB_SESSION_PWD =' | ||
- | $ADODB_SESSION_DB ='phplens'; | + | $ADODB_SESSION_DB ='employees'; |
include ' | include ' |
v5/session/session_index.1463930296.txt.gz · Last modified: 2017/04/21 11:37 (external edit)