On 11/20/2012 09:38 PM, Samuel Gómez wrote: > my $cfg = Apache2::Module->get_config(__PACKAGE__, $s);
try: Apache2::Module::get_config(__PACKAGE__, $s); The way you call it means Apache2::Module::get_config('Apache2::Module', __PACKAGE__, $s); Torsten