in reply to Configuration variables using run-time in put without -w complaints?
My guess is that the vars arn't really defined. Maybe you have them in a loop or something where the last case gets run with undefs.if( defined $log_dir and exists $user_data{site} ) { $transfer_log = eval { "$log_dir/$user_data{site}->[0]-access_log" + }; } else { print STDERR "log_dir was undef or site wasn't in user_data\n"; + }
|
|---|