CGI::Session file permission?

2005-03-28 Thread David Garamond
Am I right to think that CGI::Session::File driver is insecure? It creates the session files with a hardcoded 0644 permission, while the synopsis/examples tell us to store the files in "/tmp". Regards, dave -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

perl.beginners.cgi Weekly list FAQ posting

2005-03-28 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addres

Re: need logic and one error help

2005-03-28 Thread T Raymond
Hi Charles and everyone, It turns out I was clearing my hash each time because it was re-initializing every time. Once I stopped doing that, my error went away. Thanks everyone for your tips and help, I will try to incorporate your tips in my programs. --Tee Charles K. Clarkson wrote: T Raymond

Re: Perl Apache Configuration

2005-03-28 Thread Lawrence Statton
> > Try: > > Content-type > > not: > > Content-Type > Red herring Content-Type is as good as CONTENT-TYPE is as good as cOnTeNt-TYpe ... See RFCs 2616, 1945, 822 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Lawrence Statton - [EMAIL PROTECTED] s/aba/c/g Comp

RE: need logic and one error help

2005-03-28 Thread Charles K. Clarkson
T Raymond wrote: : Hi all, : Please advise me about my logic/syntax errors. I can't seem to figure : out how to write in a logical sequence this code. What is in 'employee.dat'? It would be helpful if we could run the example. : I'm also getting an : error which I

RE: need logic and one error help

2005-03-28 Thread Charles K. Clarkson
Steven Schubiger wrote: : On 28 Mar, T Raymond wrote: : : : print header, : : What is header supposed to act on? : If it's the method declared in CGI.pm, which I'd assume, : you need to create an object by saying my $q = new CGI and : replace header with $q->header.