#native_company# #native_desc#
#native_cta#

DB_eSession class securely stores PHP sessions in a MySQL DB

By Lawrence
on May 6, 2004

Version: 1.0.0

Type: Class

Category: Databases

License: GNU General Public License

Description: DB_eSession is a feature packed PHP class that stores session data in a MySQL database rather than files. It is powerful, designed with security in mind, and yet easy to utilize. The code contains lots of comments, it comes with full documentation, and examples of how to use the class including a basic authentication login/logout process. It includes member functions useful (to webmasters) for monitoring or viewing, deleting, and altering sessions validity like in the case of locking one or more sessions upon detection of unauthorized use. This custom MySQL database session handler class might just be what you’re looking to implement on your web or intranet site. See the list of features below:

General features:

Stores session data in a MySQL table using PHP’s built-in session handler.
Built-in handling of session expiration and cleanup.
Supports the changes of session related configuration settings (inc. PHP5).
Allows for normal or persistent MySQL database connections.
Access to opened MySQL resource connection to use in your script.
Accepts a passed database resource link to use as the DB connection.
Supports session ID’s between 12 and 32 characters long.
Custom or changeable database, table and column names.
An option to create new session ID’s (you supply, class or PHP builds).
Can initiate buffered output (using ob_start) within the class.
A session_start() automatically initiated within the class.
Can send ‘Cache-Control:’ header output within the class (fixes IE6 bug).
Ability to retrieve a specific sessions expiration date and time.
Retrieve current session life setting in seconds or minutes.
Retrieve a numeric total of the number of active and inactive sessions in table.
Facility to make assignment and retrieval of session variables easier.
Ability to create manual URI’s and links that includes session name and ID.
The ability to retrieve what the MySQL server version number is.
An adequate form of encryption/decryption methods/functions are included and used automatically when libmcrypt is not installed.

Security features:

Standard user inactivity time-out handled automatically.
Absolute user logoff time-out capability (session will be terminated no matter what after a number of designated minutes/seconds have elapsed).
Ability to lock and unlock a particular session or all sessions. When a session is locked, it is immediately not available for use.
User to session verification using IP address and browser information.
Security level (code) clearance for each session/web page.
Encrypt/decrypt as desired each session field.
Encrypt/decrypt an extra session field to compare against original (to detect against possible tampering).
Encrypt/decrypt the whole session data in the table (essentially obscuring session variable names in table). Can be used in combination with per session field encryption, resulting in double encryption security.
A new encryption Initialization Vector is created every time values change.
Ability to manually delete a particular session or all sessions.
The users IP address and web browser is recorded as part of the session for tracing information.

Other features:

Support for multiple language error and warning messages.
Support of a default language as well as current active language settings.
Basic or detailed (with SQL syntax) error/warning reporting.
Buffered error and warning messages.
Option for class to stop execution or not upon encountering an error/warning. Class can display errors/warnings automatically or control in your script.
Can select font color and size separately for error and warning messages.
Code has lots of comments and formatted within 82 characters wide.
Full documentation (only provided in English) is included.
Code use examples provided, including a basic authentication (login/logout) process.
SQL text file provided for creating the MySQL session table.

The class code is too big to fit in this snippet area. I tried once and the source code got truncated.

You can download a full package file of zip/tar/sit at:
http://www.code.dearneighbor.com

This is a short introduction to the feature packed DB_eSession PHP class, which allows the storage and management of session data in a MySQL database rather than files (which is PHP's default). It is powerful, designed with security in mind, and easy to utilize. It's free under the GNU GPL. You can download at http://www.code.dearneighbor.com

Files included in this package:

class.DB_eSession.php - Main class file. 
errors.DB_eSession.php - Error and warning definitions used by class. 
config.DB_eSession.php - Optional configuration file used to pass parameters to class. 
eSessions_table.sql - A text file containing the SQL to create the MySQL sessions table. 
index.php - An example home page of an authentication process. 
login.php - An example page used to login members. 
emplogin.php - An example page used to login employees. 
logout.php - An example page of logging out members. 
members.php - An example page of members restricted area. 
employees.php - An example page of employees restricted area. 
guess.php - A number guessing game showing an example of the use of the class. 
examples.php - View code to get an idea of how to invoke various member functions of the class. 
monitor.php - Session table monitoring and maintenance page (helpful while testing your scripts). 
manual.html - DB_eSession class manual in HTML. 
license.html - The GPL in HTML. 
readme.html - This brief instructions file. 

Basic installation steps (for more details refer to the 'How to install' section of the manual):

Use phpMyAdmin or similar tool to create a MySQL database, username and password. If you already have these defined/setup then you can use those if you wish and can skip this step. 
Use the SQL within the eSessions_table.sql file to create the sessions table (using phpMyAdmin). 
Update config.DB_eSessions.php with the name of the local host, database, username, password, table name, and column names if they are different than the supplied defaults. 
Install the class.DB_eSession.php, errors.DB_eSession.php, and config.DB_eSession.php in a folder on your web server (and make sure the files and folder have the correct permissions). Optionally, you can install the examples.php, guess.php, monitor.php, and the six login/logout example files to test the class with. Otherwise, you can just start writing your own script utilizing the new class. 
Open up your web browser and type the URL to point to the example PHP file you wish to run. i.e. www.example.com/guess.php or www.example.com/auth/index.php (this is assuming that you created a directory called 'auth' and placed the six login/logut example files and the class related files in it). 
The monitor.php file allows you to view every row in the sessions table, lock/unlock, and delete sessions. It is intended as an aid while developing your scripts. Although it is useful for web masters to monitor session traffic, it is not recommend to place in a public directory (in a production ready site). If you still intend to use it in a public directory, then protect the page (like with a username and password) from easy access. If you're using an Apache server, you can protect the page by setting a .htaccess file. Also, read the Apache authentication information page.

Don't forget to read the DB_eSession class manual.