views:

1062

answers:

2

I have a simple web page that till now didn't need any login. It is programed with Perl CGIs.

I would like to know the steps to add session support in order to have the login information available.

I don't want very complicated methods, because the web page is very simple.

Also I want some recommendations for the technologies/libs that I need to support sessions with Perl.

+9  A: 

I used CGI::Session many, many moons ago.

http://search.cpan.org/perldoc?CGI::Session

AlexJReid
I suggest linking to perl modules like this to guarantee you get the latest version: http://search.cpan.org/perldoc?CGI::Session
Schwern
Good call - I have edited accordingly.
AlexJReid
+3  A: 

I've used Apache::Session.

Leon Timmermans
Note that Apache::Session *doesn't* require apache, mod_perl, etc.
ysth
Yeah, that's a bit confusing
Leon Timmermans