Re: Looking for easy sessions using mod_perl

2005-02-18 Thread Perrin Harkins
On Fri, 2005-02-18 at 12:43 -0600, Boysenberry Payne wrote: > Normally in php it's as simple as: > session_start(); It's that easy with mod_perl too if you use Apache::SessionManager. Save yourself some trouble and just use that. http://search.cpan.org/search?query=Apache-SessionManager&mode=dist

Looking for easy sessions using mod_perl

2005-02-18 Thread Boysenberry Payne
I'm moving from PHP to mod_perl. What a jump... Normally in php it's as simple as: session_start(); Then depending on your settings the session is kept in a cookie or in the url. I've looked into Apache::Session a bit, also Session (which is a wrapper for Apache:Session.) I set it up locally usin