Re: Beginner's FixupHandler question

2002-01-08 Thread Robert Landrum
At 2:40 PM +0100 1/8/02, Zsolt Czinkos wrote: > >--- >Here's my simple script: > >package SetMyCookies; > >use Apache; >use Apache::Constants; >use Apache::Cookie(); Very important to use strict when writing anything in mod_perl. >sub handler { > >my $r = shift; > > $c = $r->header_in(

Re: Beginner's FixupHandler question

2002-01-08 Thread Zsolt Czinkos
My One request is: [czinkos@vajradhara apache]$ telnet localhost 8080 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GET / HTTP/1.0 Cookie: pritty=prutty It is only 1 html source. Thanks czinkos On Tue, Jan 08, 2002 at 10:07:18AM -0600, Stathy G. Touloumis wrote: > >

Re: Beginner's FixupHandler question

2002-01-08 Thread Paul Lindner
On Tue, Jan 08, 2002 at 10:07:18AM -0600, Stathy G. Touloumis wrote: > > >I've just started learning modperl and I started with a simple module > >for apache httpd 1.3.22. > >This simple module (see below) sets & gets a cookie at every request. > >I thought it wasn't too difficult. I put it into

Re: Beginner's FixupHandler question

2002-01-08 Thread Stathy G. Touloumis
>I've just started learning modperl and I started with a simple module >for apache httpd 1.3.22. >This simple module (see below) sets & gets a cookie at every request. >I thought it wasn't too difficult. I put it into the fixup phase (any >problem with it?). >First it seemed to work, but when I p

Beginner's FixupHandler question

2002-01-08 Thread Zsolt Czinkos
Hello everyone I've just started learning modperl and I started with a simple module for apache httpd 1.3.22. This simple module (see below) sets & gets a cookie at every request. I thought it wasn't too difficult. I put it into the fixup phase (any problem with it?). First it seemed to work, bu