Re: [mp2] executing subprocesses from mod_perl

2003-09-04 Thread Haroon Rafique
ts don't catch. You can SB> always switch to IPC::Run if you encounter some problems. SB> Apache::SubProcess it is then. I will keep the list posted in case of problems. -- Haroon Rafique <[EMAIL PROTECTED]> -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

[mp2] executing subprocesses from mod_perl

2003-09-03 Thread Haroon Rafique
separate install, so don't use it. * Apache::SubProcess is distributed with mod_perl, so use it. etc... Thanks in advance, -- Haroon Rafique <[EMAIL PROTECTED]> -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

Re: Another newbie question: SetPerlVar

2003-07-17 Thread Haroon Rafique
perl.apache.org/docs/1.0/guide/config.html#PerlSetVar_and_PerlAddVar For 2.0 http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlSetVar_ -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [mp2] Apache::DBI

2003-07-14 Thread Haroon Rafique
# unpredictable query results. -if ($Apache::ServerStarting == 1) { +if ($Apache::ServerStarting and $Apache::ServerStarting == 1) { print STDERR "$prefix skipping connection during server startup, read the docu !!\n" if $Apache::DBI::DEBUG > 1; return $drh->connect(@args); } Good luck, -- Haroon Rafique <[EMAIL PROTECTED]>

Re: submit input truncation

2003-06-25 Thread Haroon Rafique
read: http://mathforum.org/epigone/modperl/bindondrei Secondly, you should also post the version numbers for all of the above-mentioned packages. As mentioned in one of the emails this was fixed in mod_perl 1.99_09. -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [RELEASE CANDIDATE] Apache::Test 1.03-dev

2003-06-18 Thread Haroon Rafique
e 2.0.44, mod_perl 1.9908 All tests successful. -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Haroon Rafique
te as well. Apache::Filter is now found at: /home/haroon/src/build/modperl-2.0/blib/lib/Apache/Filter.pm -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-10 Thread Haroon Rafique
+ t/filter/TestFilter/in_init_basic.pm10 Jun 2003 14:46:33 - @@ -11,6 +11,11 @@ use base qw(Apache::Filter); +BEGIN { +warn "Apache::Filter $INC{'Apache/Filter.pm'}"; +warn join "\n", @INC; +} + use Apache::Const -compile => qw(OK M_POST);

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-10 Thread Haroon Rafique
On Today at 12:38am, PH=>Perrin Harkins <[EMAIL PROTECTED]> wrote: PH> On Mon, 2003-06-09 at 09:55, Haroon Rafique wrote: PH> > Now onto serious stuff. /usr/bin/perl here is the system-wide perl PH> > install that came bundled with Redhat. PH> PH> Just a thought:

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-09 Thread Haroon Rafique
erl module TestFilter::in_init_basic for server localhost.localdomain:8529, exiting... !!! server has died with status 255 (t/logs/error_log wasn't created, start the server in the debug mode) make: *** [run_tests] Error 143 Thanks, -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-06 Thread Haroon Rafique
he tests, that were skipped last time around, ran successfully this time. 100%. Now onto investigating my originally reported problem as to why the older, system-wide installation is interfering with the "make test". Any suggestions on how to get started on that? Thanks, -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [mp2] make test fails on redhat 8.0 with 1.99_09 and 1.99_10-devsources

2003-06-06 Thread Haroon Rafique
ror_log) there's nothing suspicious in t/logs/error_log Once I get a 100% on both tests then I can worry about how to isolate the problem with the old pre-installed mod_perl messing up the tests as originally reported. Regards, -- Haroon Rafique <[EMAIL PROTECTED]>

Re: [mp2] make test fails on redhat 8.0 with 1.99_09 and 1.99_10-devsources

2003-06-04 Thread Haroon Rafique
ference from perl -v is SB> -libc=/lib/libc-2.2.92.so, so=so, useshrplib=true, libperl=libperl.so SB> - gnulibc_version='2.2.92' SB> +libc=/lib/libc-2.2.5.so, so=so, useshrplib=true, libperl=libperl.so SB> +gnulibc_version='2.2.5' SB> SB> but I doubt this has anything to do with it. SB> Cheers, -- Haroon Rafique <[EMAIL PROTECTED]>

[mp2] make test fails on redhat 8.0 with 1.99_09 and 1.99_10-devsources

2003-06-03 Thread Haroon Rafique
T Built under linux Compiled at Sep 1 2002 23:56:49 %ENV: PERL_LWP_USE_HTTP_10="1" @INC: /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0 /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/s

Re: Apache::DBI on mp2

2003-03-04 Thread Haroon Rafique
l/v5.8.0 I simply patched: /usr/lib/perl5/vendor_perl/5.8.0/i686-linux/Apache2/Apache/compat.pm with your patch and connect_on_init works unmodified. And as mentioned in your email, I do have Apache::compat loaded before Apache::DBI. Cheers, -- Haroon Rafique <[EMAIL PROTECTED]>

Apache::DBI on mp2

2003-03-03 Thread Haroon Rafique
leanup); # make sure, that the rollback is called only once for every # request, even if the script calls connect more than once $Rollback{$Idx} = 1; -- Haroon Rafique <[EMAIL PROTECTED]>