All,

With the following entries in our httpd.conf, can anyone see any reason why
we are having to close and reopen our browser to see any effect of the
changes made to to /online_testing/perl/Quiz1Solns.cgi?

# force reloading of modules
# put use Apache::Reload in module you are developing
PerlInitHandler Apache::Reload
PerlSetVar ReloadAll Off

# Startup File:
PerlRequire /home/darnold/modperl/startup.pl

Alias /perl/ /home/darnold/modperl/
PerlModule Apache::Registry
<Location /perl/>
        SetHandler perl-script
        PerlHandler Apache::Registry
        Options +ExecCGI
        PerlSendHeader On
        allow from all
</Location>

PerlModule ModPerl::Rules1
<Location /mod_perl_rules1>
        SetHandler perl-script
        PerlHandler ModPerl::Rules2
        PerlSendHeader On
</Location>

# Alias /online_testing/ "/usr/local/apache/htdocs/online_testing/"
# <Location /online_testing/>
#       AuthName OnlineTesting
#       AuthType Basic
#       PerlAuthenHandler Apache::AuthTieDBI
#       PerlSetVar TieDatabase mysql:test_www
#       PerlSetVar TieTable user_info:user_name:passwd
#       require valid-user
#       PerlAccessHandler Apache::GateKeeper
#       PerlSetVar Gate open
# </Location>


<Location /online_testing/perl/>
        SetHandler perl-script
        PerlHandler Apache::Registry
        Options +ExecCGI
        PerlSendHeader On
        allow from all
</Location>

Alias /cgi-cobby/ /home/cobby/perl/
<Location /cgi-cobby/>
        SetHandler perl-script
        PerlHandler Apache::Registry
        Options +ExecCGI
        PerlSendHeader On
        allow from all
</Location>

Alias /online-perl/ /home/online/perl/
<Location /online-perl/>
        SetHandler perl-script
        PerlHandler Apache::Registry
        Options +ExecCGI
        PerlSendHeader On
        allow from all
</Location>



-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to