Re: Deleting a PerlSetVar variable

2002-02-26 Thread Geoffrey Young
simran wrote: Thanks Geoff. What you have suggested can solve the problem... i'm however, preferably looking at deleting a set var via my apache config file, and don't have a '$r' /request_object available there. but you do have an Apache::Server object...

RE: Deleting a PerlSetVar variable

2002-02-26 Thread Stathy G. Touloumis
See chapter 8 of the Eagle book (Apache Modules in Perl/C) for complete coverage of hooking into the apache configuration. It really allows you to do some pretty nifty stuff and would easily allow you to perform what you want. At first it seems overkill to know but once you do it opens many

Re: Deleting a PerlSetVar variable

2002-02-25 Thread Geoffrey Young
simran wrote: Hi All, I could not find references on how to delete a varaible once set via PerlSetVar. I am setting a global 'PerlSetVar AuthNameExpires +24h' variable in my httpd.conf and want to be able to set it back to expire at end of session for some virtual hosts. If i could

Re: Deleting a PerlSetVar variable

2002-02-25 Thread simran
Thanks Geoff. What you have suggested can solve the problem... i'm however, preferably looking at deleting a set var via my apache config file, and don't have a '$r' /request_object available there. Doug et al, can i please suggest the addition of a: * PerlDelVar or PerlUnsetVar to