Hi,
I'm about to put a site into production using Apache::ASP, and need to have
a development side to the site to continue working.
I won't to be able to have 2 difference Application, one for the production
side, and one for the development side.  What do I need to do to make this
work.  I tried something like this in httpd.conf, but didn't seem to work..

<Files ~ (\.htm)>
        SetHandler perl-script
        PerlHandler Apache::ASP
        PerlSetVar Debug  2
        PerlSetVar NoState 1
        PerlSetVar BufferingOn 0
        PerlSetVar NoCache 1
       PerlSetVar DynamicIncludes 1
</Files>
<Files ~ (\.html)>
        PerlHandler Apache::ASP
        PerlSetVar Debug 2
        PerlSetVar NoState 1
        PerlSetVar BufferingON 0
        PerlSetVar NoCache 1
        PerlSetVar DynamicIncludes 1
</Files>
<Directory /usr/local/apache/htdocs>
        PerlSetVar Global /usr/local/apache/htdocs
</Directory>
<Directory /usr/local/apache/htdocs/development>
        PerlSetVar Global /usr/local/apache/htdocs/development
</Directory>

I'd also like to turn off all the debugging, etc, on the production side but
like it on in the development side...
I may just be tired, (or dumb) and have missed something or just way off,
but need help anyway..
thanks,
brad

Reply via email to