That worked :)  Ahh, at least I solved ONE problem!

Thanks!
Bryan

> The solution is to extend @INC at the server startup to include
> directories you load the files from which aren't in @INC.
> 
> For example, if you have a script which loads MyTest.pm from
> /home/stas/myproject:
> 
>   use lib qw(/home/stas/myproject);
>   require MyTest;
> 
> Apache::Reload won't find this file, unless you alter @INC in 
> startup.pl:
> 
>   startup.pl
>   ----------
>   use lib qw(/home/stas/myproject);
> 
> and restart the server

Reply via email to