3

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.

David Ameller
  • 1,774
  • 3
  • 18
  • 25

2 Answers2

9

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

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

szabgab
  • 6,202
  • 11
  • 50
  • 64
AlexJReid
  • 1,601
  • 1
  • 13
  • 17
  • 1
    I suggest linking to perl modules like this to guarantee you get the latest version: http://search.cpan.org/perldoc?CGI::Session – Schwern Nov 06 '08 at 22:23
3

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

szabgab
  • 6,202
  • 11
  • 50
  • 64
Leon Timmermans
  • 30,029
  • 2
  • 61
  • 110