php-src/ext/msession
2002-04-15 22:00:56 +00:00
..
config.m4 extension converted automatically to PHP_NEW_EXTENSION. Manually confirmed 2002-03-12 16:44:00 +00:00
CREDITS Added 2001-09-19 13:14:24 +00:00
msession-test.php A php script which shows how to use msession with PHP sessions 2001-12-23 19:58:00 +00:00
msession.c Chages for beta3 2002-04-15 22:00:56 +00:00
msession.php Added 2001-09-19 13:14:24 +00:00
php_msession.h Added new features for msession beta 2 2002-04-08 23:07:23 +00:00
README Added php.ini entry info. 2001-12-23 19:57:33 +00:00
reqclient.h Chages for beta3 2002-04-15 22:00:56 +00:00

This is msession, it is an interface to a stand-alone session
management system. The msession daemon can be found at 
Mohawk Software's web site, under Project Phoenix

http://www.mohawksoft.com/phoenix.html

Requirements:
Mohawk Software's Phoenix library.
Mohawk Software's msession daemon.

Building:
In the config.m4 file you will need to specify the include 
and library directories for Phoenix. The setting in config.m4
is probably wrong.

You will need phoenix installed and built to compile this
module.

To use msession-test.php, msession must be the default session
handler in PHP. The easiest way to do that is in the php.ini
file as:

[Session]
session.save_handler = msession
session.save_path = localhost

The session.save.path is the host name of the server running
msessiond.

12/22/2001
Changed msession_getdata(...) to msession_get_data(...)
Changed msession_setdata(...) to msession_set_data(...)
(docs to follow)