Hi,
I sent out an email yesterday describing some problems that I'm having
with Apache::SSI. I've narrowed things down significantly and hope that
this extra info can help someone point me in the right direction.
Basically, it all boils down to the fact that once an SSI directive
> my %temp = $apache->headers_in;
> foreach (keys %temp) {
> print $temp{$_};
> }
this should be:
my $temp = $apache->headers_in;
foreach (keys %$temp) {
print "$_ $temp->{$_}\n";
}
just because you can do it but nobody really talks about it, this is as good
a place t
I say strange because i have the next
read(STDIN,$buf,$apache_headers->{'Content-length'});
and it works (when in POST method).
But if i write
$r->read($buf,$apache_headers->{'Content-length'});
then i get no $buf, no data.
I've read some comments about this
http://www.gossamer-threads.com/archive
Hi:
There is a project called EplSite, this project use EmbPerl and mod_perl.
EplSite 2 has been released.
This version has many improvements, the most important are:
- Now you can run EplSite safety under mod_perl, we have eliminated files
loaded with __PACKAGE__.
- Now everything works with
Just in case anyone is interested in participating in this discussion (there
are quite a few well-pruned existing posts so I'll just supply a link to
their list archives):
http://perl.org.il/pipermail/perl/2003-November/003460.html
--
Reporting bugs: http://perl.apache.org/bugs/
Mail list info:
Ok, i have read the docs and i (think) finish with my small problem.
The thing is that, docs actually in perl.apache.org works as follow (and if
i am wrong please tell me!):
To see how to do something in modperl2 you DO NOT have to
- search through modperl2 docs (still)
And you DO have to
- search