in reply to loading modules on the fly with mod_perl
$r->dir_config returns CEMS::EXT so I dont see why you would want to join a string with ::. also the split of the URI doesn't look like your are leveraging the API properly. Perhaps#get package name my $module = join ('::',$r->dir_config('RootNamespace'), split (/\//, substr($r->uri(),1,-3) ) );
is in order.$r->filename
and finally, you can get rapid help with this from the modperl mailing list
|
|---|