Re: Apache segfaults with Oracle AS10g (9.0.4.0) when attempting to use mod_perl

2005-10-04 Thread Maruthi Vara Prasad Chirravuri
Hi, Can u send the /var/log/httpd/error.log and /var/log/messages output. Ch. Maruthi Vara Prasad. On 10/5/05, Rafael Caceres <[EMAIL PROTECTED]> wrote: > When trying to use any mod_perl functionality in the Apache server > included with Oracle AS10g under AIX 5.3, such as > -'PerlModule Apache:

Re: Apache segfaults with Oracle AS10g (9.0.4.0) when attempting to use mod_perl

2005-10-04 Thread Frank Wiles
On Tue, 04 Oct 2005 18:01:36 -0500 Rafael Caceres <[EMAIL PROTECTED]> wrote: > When trying to use any mod_perl functionality in the Apache server > included with Oracle AS10g under AIX 5.3, such as > -'PerlModule Apache::Status' > -'PerlModule Apache::DBI' > or others using XS, Apache does a cored

Apache segfaults with Oracle AS10g (9.0.4.0) when attempting to use mod_perl

2005-10-04 Thread Rafael Caceres
When trying to use any mod_perl functionality in the Apache server included with Oracle AS10g under AIX 5.3, such as -'PerlModule Apache::Status' -'PerlModule Apache::DBI' or others using XS, Apache does a coredump. The same coredump occurs if no XS using module is loaded from httpd.conf but used

Re: ModPerl::PerlRun CGI.pm SSI

2005-10-04 Thread Jim Albert
I think I may now have a better understanding of this and that the problem lies in CGI.pm. I've emailed the following to Lincoln Stein explaining what I believe to be true. Perhaps someone can either confirm my understanding or otherwise correct me. My email to Lincoln Stein is as follows: I d

Re: Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Frank Wiles
On Tue, 04 Oct 2005 14:00:42 -0500 Troy Bull <[EMAIL PROTECTED]> wrote: > I removed that line and it started up. And when I ran my test script > at the following location > > /ir/test.pl > > (this script echos out the envronment variables) I get the following > output It was my understanding

mod_perl 1.28 + 1.29 seg fault

2005-10-04 Thread Terry, Jason
Net::SSLeay causes a seg fault in mod_perl. This only happens in mod_perl when using RegistryLoader on a script in apache startup. For example if I have this line Apache::RegistryLoader->new->handler('myscript.cgi', "/home/htmlmanager/public_html/myscript.cgi"); But if I don't load the file in

Re: Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Troy Bull
I removed that line and it started up.  And when I ran my test script at the following location /ir/test.pl (this script echos out the envronment variables)  I get the following output  It was my understanding that GATEWAY_INTERFACE should say something like CGI-Perl/1.1 is that true or am I

Re: [RELEASE CANDIDATE] Apache-Test-1.27 RC

2005-10-04 Thread Philip M. Gollucci
Philip M. Gollucci wrote: A release candidate for Apache-Test 1.27 is now available. http://people.apache.org/~pgollucci/at/Apache-Test-1.27-dev.tar.gz I've noticed we include the RELEASE file in the release tarball. I don't believe mod_perl or apreq do. Is this intentional ? -- END -

Re: Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Frank Wiles
On Tue, 04 Oct 2005 13:23:50 -0500 Troy Bull <[EMAIL PROTECTED]> wrote: > PerlModule Apache2 Try removing this from your config file. This shouldn't be necessary since you are running mod_perl 2.0.1. - Frank Wiles <[EMAIL PROTECTED]> http://www.wile

Re: Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Randy Kobes
On Tue, 4 Oct 2005, Troy Bull wrote: Here is a bit more info my httpd.conf where I load the mod perl : LoadModule perl_module modules/mod_perl.so LoadFile "C:/Perl/bin/perl58.dll" LoadFile "c:/apache/Server/Apache2/bin/libapreq2.dll" LoadModule apreq_module modules/mod_apreq2.so PerlModule Ap

Re: Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Troy Bull
Here is a bit more info  my httpd.conf where I load the mod perl : LoadModule perl_module modules/mod_perl.so LoadFile "C:/Perl/bin/perl58.dll" LoadFile "c:/apache/Server/Apache2/bin/libapreq2.dll" LoadModule apreq_module modules/mod_apreq2.so PerlModule Apache2 -

Re: Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Troy Bull wrote: > I have Apache I downloaded from apache.org. I got the ppm for mod_perl > from the binary distribution site mentioned on the apache help page. I > installed it using ppm (active state). And when I add the following line > > PerlMo

Problems Getting Mod Perl To Work on Windows

2005-10-04 Thread Troy Bull
I have Apache I downloaded from apache.org. I got the ppm for mod_perl from the binary distribution site mentioned on the apache help page. I installed it using ppm (active state). And when I add the following line PerlModune Apache2 My Apache wont start up. I tried to carefully follow eve

ModPerl::PerlRun CGI.pm SSI

2005-10-04 Thread Jim Albert
I'm trying to debug a strange situation with the following environment: Apache 2.0.54 mod_perl 2.0.1 perl 5.8.6 CGI.pm 3.10 Linux 2.6.12-1.1447_FC4smp Say I have a mod_perl script called x.cgi configured for mod_perl as follows: SetHandler perl-script PerlHandler ModPerl::PerlRun Options

Re: Looking for good MP2 reference material

2005-10-04 Thread Philip M. Gollucci
Perrin Harkins wrote: Hmmm, not sure where you got that idea, Philip. The site has been around for many years. I don't even know how old it is because when I first heard of mod_perl (in 1998) it already existed. However, the nice design it has now (thanks to hard work by a few generous peopl

Re: [mp2] $| doesn't work with mod_perl

2005-10-04 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi pradeep, is $r->flush(); working, or not? Tom pradeep kumar wrote: > mod_deflate is not loaded on my system and I can still see this problem. > > I instrumented some portion of the code to understand the flow and I > have some questions. The mod

Re: GlobaRequest, restart_count, and RequestUtil

2005-10-04 Thread Christopher H. Laco
Michael Peters wrote: Christopher H. Laco wrote: use Data::UUID; I know this isn't what you're looking for since it doesn't answer the question you have, but just out of curiosity why do you need Data::UUID? Would something like mod_unique_id work better? http://httpd.apache.org/docs/1.3/

Re: GlobaRequest, restart_count, and RequestUtil

2005-10-04 Thread Michael Peters
Christopher H. Laco wrote: >>> use Data::UUID; I know this isn't what you're looking for since it doesn't answer the question you have, but just out of curiosity why do you need Data::UUID? Would something like mod_unique_id work better? http://httpd.apache.org/docs/1.3/mod/mod_unique_id.html

Re: GlobaRequest, restart_count, and RequestUtil

2005-10-04 Thread Christopher H. Laco
Christopher H. Laco wrote: Christopher H. Laco wrote: No love. This block segfaults my apache2/mp2: if (exists $ENV{MOD_PERL_API_VERSION} && $ENV{MOD_PERL_API_VERSION} == 2) { require Apache2::RequestRec; require Apache2::RequestUtil; require Apache2::RequestIO;

Re: Installing Modperl problem

2005-10-04 Thread Maruthi Vara Prasad Chirravuri
HI All, This is Maruthi Vara Prasad. I have newly joined in the modperl group. I hope this could help you in solving the problem. Plz Make Sure that first Apache is to be Installed, Next Perl and then Modperl. Also make sure that the Installation tree of mod_perl and apache are different and not