> > Q: How to access Apache Request ($r) from Apache::ASP?? > Is there such a thing? I thought it was called $Request, as per:
http://www.apache-asp.org/objects.html Maybe I missed $r... > Since I don't seem to be lighting a lot of lightbulbs with this question, l > et > me try a different tack... hmm > > I need to be able to set a PerlSetVar variable (in the Apache httpd.conf) > > for a virtual server and read it from Apache::ASP. Is there a way to do thi > s? How is this related to the previous question? The following is an excerpt from one of the httpd.conf's I've used: <Files ~ (\.asp)> SetHandler perl-script PerlHandler Apache::ASP # The default session serializer has limitations on size. # This version does not have that limitation. PerlSetVar StateDB MLDBM::Sync::SDBM_File # By using Data::Dumper the session is saved in (partially) english. # Using Storable would be faster and smaller, but in binary. Not # suitable, at least for development. PerlSetVar StateSerializer Data::Dumper # definitely want Perl to use strict scoping etc PerlSetVar UseStrict 1 </Files> hope it lights some lightbulbs for ya Ellers --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]