Hello all,
I've got a registry script that issues a subrequest for a php page that
issues a subrequest on another registry script.
registry->php->registry
The initial registry script sets:
$r->notes("seen"=> $seen);
my $subr = $r->lookup_uri("test.php3");
$subr->run;
The php.php3 file does:
<?
$seen = apache_note("seen");
echo $seen; #undef
virtual("/perl/other.pl");
?>
other.pl:
my $seen = $r->main->notes('seen');
print $seen; #undef
$seen = $r->notes('seen');
print $seen; #undef
The note is not available in the php or subsequent subrequests.
If the subrequest is for another registry script the note works fine.
Anyone know why this is or how to make the note work for php?
Thanks,
--
Daniel Bohling