Hi, this is quite an old thread. But now I have found why it was not working. ... [...] ... Let's start with a short explanation what I was trying to do. I...
Torsten Foertsch
torsten.foertsch@...
May 1, 2005 1:41 pm
64737
I've got an HTTP output filter running on mp2-RC4 + httpd2.0.54 + libapreq2-2.04_03-dev, and occasionally I see these messages in my error_log: [Sun May 01...
Jeff Ambrosino
jbambrosino@...
May 1, 2005 8:30 pm
64738
Actually, it looks like using APR::Error [1] and wrapping $f->print in an eval would do the trick...? Jeff [1]...
Jeff Ambrosino
jbambrosino@...
May 1, 2005 10:40 pm
64739
I am using the SuSE 9.1 which has apache 2.0 and mod_perl 1.99_12. I did not see any Apache::DBI debug information in the apache error log. I guessED the the...
jiesheng zhang
jiesheng@...
May 2, 2005 5:01 am
64740
... Shouldn't you be using MP_DEBUG=1 and MP_TRACE=1? Regards, Jie...
Jie Gao
J.Gao@...
May 2, 2005 5:14 am
64741
... jiesheng, please read the module's manpage: http://search.cpan.org/dist/Apache-DBI/DBI.pm To enable debugging the variable $Apache::DBI::DEBUG must be set....
Stas Bekman
stas@...
May 2, 2005 6:44 am
64742
... That's right. ... Use must use $r->set_content_length(). See the mp2 test suite for examples. -- ...
Stas Bekman
stas@...
May 2, 2005 6:48 am
64743
... That's correct, Jeff. eval and check for APR::Const::ECONNRESET as explained in [1] ... Please report whether this did the trick. We ought to document this...
Stas Bekman
stas@...
May 2, 2005 6:51 am
64744
... Hmm, looks like a not very good diagnostics on the behalf of the CGI. Try to fix it to print the actual filename and submit the patch to Lincoln? ... Check...
Stas Bekman
stas@...
May 2, 2005 6:53 am
64745
... It's more like B::Terse bug, notice the comment: sub noh_b_terse { my $r = shift; $r->content_type("text/plain"); return unless has($r, "terse"); no strict...
Stas Bekman
stas@...
May 2, 2005 7:27 am
64746
I had some problems like this on my new x86_64 machine with mod_perl2, seems that not only perl must be compiled with -fPIC , also apache and all libraries or...
Marc GrĂ cia
mgracia@...
May 2, 2005 7:53 am
64747
hi, ... fwiw, i'm seeing no such issues on osx 10.4/worker mpm. no errors, no suspect log entries, etc. Embedded Perl version v5.8.6 for Apache/2.1.5-dev...
OpenMacNews
OpenMacNews@...
May 2, 2005 8:19 am
64748
Hi modperl gentlemen, I am newbie in this list, but I have some experience with mod_perl. I use apache 1.3 with statically linked mod_perl 1.29 on Fedora Core...
Jan Poslusny
pajout@...
May 2, 2005 8:55 am
64749
Why not just do that in your modperl startup script? use lib '/usr/local/myproject/...'; Enno...
Enno
burglar@...
May 2, 2005 9:33 am
64750
... I indeed set the $Apache::DBI::DEBUG=2 in the /etc/apache2/mod_perl-startup.pl. However I did not see any debug output in the apache error log file...
jiesheng zhang
jiesheng@...
May 2, 2005 12:04 pm
64751
Ok, I tried this approach, and it only partially worked; unfortunately my httpd procs are still dying, and APR::Error doesn't seem to pass anything. Here's...
Jeff Ambrosino
jbambrosino@...
May 2, 2005 1:46 pm
64752
Please test and offer feedback on the second release candidate for libapreq2-2.05-dev. The changes since 2.04-dev are too numerous to list in this email, so...
Joe Schaefer
joe+gmane@...
May 2, 2005 2:07 pm
64753
... Did you "use Apache::DBI" in your startup.pl or httpd.conf? I think you're not understanding that Apache::DBI is a pure Perl module which you load in the...
Perrin Harkins
perrin@...
May 2, 2005 2:48 pm
64754
... I saw debug information in the apache log file after I added the use Apache::DBI to the startup.pl. However, this is not mentioned in the Apache::DBI...
jiesheng zhang
jiesheng@...
May 2, 2005 4:16 pm
64755
... Either way works. If you were doing it with PerlModule before, you should have seen the debug information. - Perrin...
Perrin Harkins
perrin@...
May 2, 2005 4:22 pm
64756
... The PerlModule seemed not working in my system. My system is suse 9.1, apache-2.0.49. mod_perl 1.99 release12. Here is my mod_perl.conf which is included...
jiesheng zhang
jiesheng@...
May 2, 2005 4:41 pm
64757
Hi, I have installed libapreq2 under Windows 2000 using ppm because I want to use Apache2::Request. I have tried a simple module: package Test::Module; use...
Octavian Rasnita
orasnita@...
May 2, 2005 5:06 pm
64758
... That's correct, Marc. ... I supposed that Tom has recompiled everything after rebuilding perl. mod_perl will pick up -fPIC automatically at compile time,...
Stas Bekman
stas@...
May 2, 2005 5:11 pm
64759
... You need to enable: the terse feature and then follow: Loaded Modules -> Apache::Const -> Apache::Const::OK -> Syntax Tree Dump (execution order) Did you...
Stas Bekman
stas@...
May 2, 2005 5:12 pm
64760
... I think the first step is be able to reliably reproduce that. Let me see if I can figure out how to do that. -- ...
Stas Bekman
stas@...
May 2, 2005 5:14 pm
64761
hi stas, ... the devil, apparently, IS in the details ... =) i mod'd my httpd.conf as above, and followed the sequence, and -- sure nuf: Syntax Tree Dump...
OpenMacNews
OpenMacNews@...
May 2, 2005 5:21 pm
64762
... looks like you hit it on the head. If you don't have $Apache::DBI::DEBUG=1 in your startup, then you wont see anything in the errorlog. from the doc: "To...
Michael Peters
mpeters@...
May 2, 2005 5:29 pm
64763
... It's true that libapreq2 is in a development phase, but it's sufficiently developed that the above basic error shouldn't occur. Have you specified, in...
Randy Kobes
randy@...
May 2, 2005 5:31 pm
64764
Hi ppl, I have a couple of PerlOutputFilterHandler directives registered in my httpd.conf <VirtualHost> conigurations. Is there any way to activate/deactivate...
Srebrenko Sehic
haver@...
May 2, 2005 9:30 pm
64765
... It is possible that the FOR UPDATE is spurious. It signals to the database system that this transaction intends to write that row. With PostgreSQL's MVCC...