Re: Apache2::Reload problems

2005-05-25 Thread Stas Bekman
Mark wrote: The whole ${package}::FIELDS business doesn't even exist in the newer version, and the handler return is now Apache2::Const::OK. ::FIELDS stuff is pseudo-hash related which is no longer supported by perl, that's why it has gone from this module. -- __

Re: Apache2::Reload problems

2005-05-25 Thread Mark
Stephane GUIBOUD-RIBAUD wrote: Hi Mark, I had the same problem as you when installed the 2.0.0-RC6. I patched the Apache/Reload.pm (version 0.07) as follow: 1/ Changed the string ${package}::FIELDS by ${package}::APACHE_RELOAD_FIELDS (line 43, 44, 90, 92) 2/ Changed the return value of the 'ha

Re: Apache2::Reload problems

2005-05-25 Thread Mark
Philippe M. Chiasson wrote: Mark wrote: I have a typical situation, with a Registry script that use's a bunch of modules. After Apache::Reload reloads the first module, I get errors suggesting that the other loaded modules have been lost. To illustrate, it is like this (fake example): Script

Re: Apache2::Reload problems

2005-05-25 Thread Philippe M. Chiasson
Mark wrote: > I have a typical situation, with a Registry script that use's > a bunch of modules. After Apache::Reload reloads the first module, > I get errors suggesting that the other loaded modules have been lost. > > To illustrate, it is like this (fake example): > > Script: > >#!/usr/b

Re: Apache2::Reload problems

2005-05-24 Thread Stephane GUIBOUD-RIBAUD
Hi Mark, I had the same problem as you when installed the 2.0.0-RC6. I patched the Apache/Reload.pm (version 0.07) as follow: 1/ Changed the string ${package}::FIELDS by ${package}::APACHE_RELOAD_FIELDS (line 43, 44, 90, 92) 2/ Changed the return value of the 'handler' function to return 0 (in

Apache2::Reload problems

2005-05-24 Thread Mark
I have a typical situation, with a Registry script that use's a bunch of modules. After Apache::Reload reloads the first module, I get errors suggesting that the other loaded modules have been lost. To illustrate, it is like this (fake example): Script: #!/usr/bin/perl use Fubar; use S