Joel Gwynn wrote:
Interesting. I just might be doing that: $config_file = $self->param('r')->dir_config('CONFIG_FILE');In my <Directory> section, I have this: PerlSetVar CONFIG_FILE /projects/funnyr_dev/private/config.ini And of course I'm not using flock on that file. Hmmm.
Try changing that up...
my $r = $self->param('r');
if(defined $r) {
$config_file = $r->dir_config('CONFIG_FILE');
}
else {
# handle no $r
}
Give that a shot and see if it solves the problem.
Rob
