Re: perl script not reloading

2002-10-13 Thread Ged Haywood
Hi there, On Sat, 12 Oct 2002, Michael Grant wrote: > I did this and it still doesn't reload the script. > > I added it just after the LoadModule: > > LoadModule perl_modulelibexec/apache/libperl.so > PerlInitHandler Apache::StatINC > > It's a single main script, not a module. Have

Re: perl script not reloading

2002-10-12 Thread Michael Grant
I did this and it still doesn't reload the script. I added it just after the LoadModule: LoadModule perl_modulelibexec/apache/libperl.so PerlInitHandler Apache::StatINC It's a single main script, not a module. It uses CGI. This is the first time I've ever written a perl script that

Re: perl script not reloading

2002-10-04 Thread Harry Danilevsky
I'd recommend a more flexible and efficient module Apache::Reload -- Harry Nigel Hamilton wrote: > Hi Michael, > > Add the following to httpd.conf: > > # Stat the modules so changes don't require the server > # to be restarted > PerlInitHandler Apache::StatINC > > This modu

Re: perl script not reloading

2002-10-04 Thread Perrin Harkins
Michael Grant wrote: > It seems that as I work on my script, Apache doesn't reload it when > the script changes on disk. Are you using Apache::Registry? It only reloads the main file, not any modules you might be using. For that, you need to use Apache::Reload or Apache::StatINC (as Nigel p

Re: perl script not reloading

2002-10-04 Thread Nigel Hamilton
Hi Michael, Add the following to httpd.conf: # Stat the modules so changes don't require the server # to be restarted PerlInitHandler Apache::StatINC This module does a file stat on your scripts and reloads if there has been a change. Nigel > It