David Ameller
David Ameller

Reputation: 1814

How can I add session management to a simple Perl CGI web page?

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.

Upvotes: 3

Views: 2970

Answers (2)

AlexJReid
AlexJReid

Reputation: 1601

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

http://metacpan.org/pod/CGI::Session

Upvotes: 9

Leon Timmermans
Leon Timmermans

Reputation: 30225

I've used Apache::Session for session management:

Upvotes: 3

Related Questions