I'm trying to pass a path name with slashes as the value of a note, and
when I try to retrieve the note from another handler in the same
request, the note is not there. Code goes like this:
in a PerlInitHandler:
$r->notes('dir_name' => '/some/dir/name/');
later, in a PerlAuthzHandler:
my $dir_name = $r->notes('dir_name');
and $dir_name is empty. :( I can set and retrieve the note just fine
as long as there are no slashes in the note.
Another question. From a handler, how can I change the value of a
variable that was PerlSetVar'ed in httpd.conf?
Thanks,
Andrew