Re: CGI::Cookie vs Apache::Cookie -- help?

2001-06-18 Thread will trillich
On Mon, Jun 18, 2001 at 07:18:56AM +0200, Per Einar wrote: - Original Message - From: will trillich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 7:09 AM Subject: Re: CGI::Cookie vs Apache::Cookie -- help? what does $cookie-bake do (add set-cookie header

CGI::Cookie vs Apache::Cookie -- help?

2001-06-17 Thread will trillich
On Sat, Jun 16, 2001 at 12:58:14AM +0200, Nenad wrote: package Apache::PermanentTicketRenewer my Counter; sub handler { my $r = shift; $Counter += 1; my $cookie = CGI::Cookie-new(-name = 'Ticket', -path = '/',

Re: CGI::Cookie vs Apache::Cookie -- help?

2001-06-17 Thread Chris Winters
* will trillich ([EMAIL PROTECTED]) [010617 23:04]: mine is similar: $r-log_error( qq(...id=$ID, sending cookie) ); my $cookie = Apache::Cookie-new( $r, -name = $cookie_name, -value = $ID ,

Re: CGI::Cookie vs Apache::Cookie -- help?

2001-06-17 Thread Cees Hek
On Sun, 17 Jun 2001, will trillich wrote: $r-log_error( qq(...id=$ID, sending cookie) ); my $cookie = Apache::Cookie-new( $r, -name = $cookie_name, -value = $ID , -domain = $r-hostname,

Re: CGI::Cookie vs Apache::Cookie -- help?

2001-06-17 Thread will trillich
On Sun, Jun 17, 2001 at 11:14:23PM -0400, Chris Winters wrote: * will trillich ([EMAIL PROTECTED]) [010617 23:04]: $r-log_error( qq(...id=$ID, sending cookie) ); --this outputs the string i'm hoping for, into the log file. my $cookie = Apache::Cookie-new( $r,

Re: CGI::Cookie vs Apache::Cookie -- help?

2001-06-17 Thread Per Einar
- Original Message - From: will trillich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 7:09 AM Subject: Re: CGI::Cookie vs Apache::Cookie -- help? On Sun, Jun 17, 2001 at 11:14:23PM -0400, Chris Winters wrote: * will trillich ([EMAIL PROTECTED]) [010617 23:04