Lightweight CGI.pm for PerlHandlers

2001-05-18 Thread Neil Conway
Hi all, I'd like to be able to use something similar to CGI.pm's HTML generation methods in a PerlHandler I'm writing. Since I'm not ever going to be using CGI directly (and also, the HTML I'm doing is pretty simple), CGI.pm seems like overkill -- and from looking at some basic memory usage data,

Re: Apache::AuthCookie- help on "make test"

2001-05-18 Thread Clayton Cottingham aka drfrog
Time Co-Ordinate Fri, 18 May 2001 03:35:03 -0700, The Organism labeled Will Waggoner said: > Hi Emma, > > I've gotten this error every time I've run the test for this version of > AuthCookie -- but upon installation it works fine. > i can confirm this

Re: Apache::AuthCookie- help on "make test"

2001-05-18 Thread Will Waggoner
Hi Emma, I've gotten this error every time I've run the test for this version of AuthCookie -- but upon installation it works fine. Will - Original Message - From: "Emma Wermström (EMW)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 18, 2001 2:48 AM Subject: Apache::Aut

Apache::AuthCookie- help on "make test"

2001-05-18 Thread Emma Wermström (EMW)
hi all! My settings: RedHat Linux7.1 Apache 1.3.19 Perl5.005 mod_perl1.24 embperl When I do "make test" during Apache::AuthCookie installation phase I get the following messages. I've included all input and output from the "perl Makefile.PL" and "make" commands. [root@localhost Apache-AuthCo

Strange error log entries

2001-05-18 Thread Michael . Jacob
[Perl 5.6.1, mod_perl 1.25, Apache 1.3.19 compiled with gcc 2.95.2 on Aix 4.3.3] Hi all, I've found some strange entries in the error_log and just don't know where to start debugging. Could anyone point me into the right direction? This is what I get when I try to Data::Dumper::Dumper any hash

Antwort: Appending Session ID behind URL

2001-05-18 Thread Michael . Jacob
Hi, 2 ways: * before sending the output do a =~ s#(http://[^/]+/)([^\s>]*)#$1/$sessionid$2#i * or the cleaner way: don't use absolute URLs for your links. (but use them for all images) cu Michael PS: I hope you put the session id before the path part of the URL? It's much easier to maintain