Re: Saving data to %session with Apache::Session::File

2010-03-30 Thread Brian J. Miller
Fabian Gut wrote: Hi I'm using Apache::Session::File for session management. I have a hash in $session{'config'} that saves some config values. I have a script that should change these config values: foreach ( sort keys %newconfig ) { $session{'config'}{$_}

Saving data to %session with Apache::Session::File

2010-03-30 Thread Fabian Gut
Hi I'm using Apache::Session::File for session management. I have a hash in $session{'config'} that saves some config values. I have a script that should change these config values: foreach ( sort keys %newconfig ) { $session{'config'}{$_} = $newconfig{$_}; }

Apache::Session Error Handling.

2004-09-22 Thread Sara
Wondering how I can show custom error message if session file doesn' exist. http://search.cpan.org/~cwest/Apache-Session/Session/File.pm If session file doesn't exist: using CGI::Carp qw(fatalsToBrowser); Software error: Object does not exist in the data store at /usr/share/pe

Re: AW: Apache::Session question

2004-03-29 Thread Wiggins d'Anconia
session_ref, -expires => "+3d", -domain => ".shop.com" ); } print header (-cookie => $cookie); start_html(); print p ("The session id is : $session_ref");#See the value of

AW: Apache::Session question

2004-03-26 Thread B. Fongo
-expires => "+3d", -domain => ".shop.com" ); } print header (-cookie => $cookie); start_html(); print p ("The session id is : $session_ref");#See the value of ref here. end_html(); ===

Re: Apache::Session question

2004-03-26 Thread Wiggins d'Anconia
B. Fongo wrote: My implementation of Apache::Session::MySQL dies along the way, and gives unclear warning. [error] Died at /usr/lib/perl5/site_perl/5.8.0/Apache/Session/Generate/MD5.pm line 40. I decided to implement session as a module call Store::Session, so as to minimize recoding it in many

Apache::Session question

2004-03-26 Thread B. Fongo
My implementation of Apache::Session::MySQL dies along the way, and gives unclear warning. [error] Died at /usr/lib/perl5/site_perl/5.8.0/Apache/Session/Generate/MD5.pm line 40. I decided to implement session as a module call Store::Session, so as to minimize recoding it in many script. Babs

Apache::session questions

2004-01-26 Thread Kenneth W. Craft MCP
I want to allow my users to login to the site and give them access to forums, classifieds, and other "user specific" information. I've been trying to figure this out all week, butt have not come up with a workable solution. Here are a few questions: 1. How do I use .htpasswd file with a MySQL Data

Apache::Session vs CGI::Session?

2003-10-20 Thread perl
Can someone comment on some advantages/disadvantages? Does opening a new browser causes a new session in either of the two? thanks - eMail solutions by http://www.swanmail.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

RE: Where is Apache::Session

2003-10-20 Thread perl
-thanks > On CPAN. > > http://search.cpan.org/~jbaker/Apache-Session-1.54/ > > Rob > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, October 20, 2003 6:15 PM > To: [EMAIL PROTECTED] > Subject: Where is Apache::

RE: Where is Apache::Session

2003-10-20 Thread Hanson, Rob
On CPAN. http://search.cpan.org/~jbaker/Apache-Session-1.54/ Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 6:15 PM To: [EMAIL PROTECTED] Subject: Where is Apache::Session I'm looking for the download of Apache::Session.

Where is Apache::Session

2003-10-20 Thread perl
I'm looking for the download of Apache::Session. There is a lot of docs on it but where is the download? thanks - eMail solutions by http://www.swanmail.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Apache::Session

2003-01-13 Thread Hughes, Andrew
Hello all, I am trying to use the Apache::Session module to create and store session information. This is my first attempt at using a session to store user info, so please stick with me. The book that I have been using for direction is Paul Dubois' "MySQL and Perl for the Web."