bug report

2007-05-23 Thread Neil Gast
-8<-- Start Bug Report 8<-- 1. Problem Description: Got the following output from 'make test': still waiting for server to warm up: . th

Re: bug report

2007-05-23 Thread Fred Moyer
LWP: 5.65 mod_perl : 1.9907 It looks like you have a very old version of mod_perl2 installed in addition to the one you just installed. I can't say whether that's the cause of the server not starting during 'make test', but it might help to remove it via rpm or what

Apxs not installed

2007-05-23 Thread Martijn
Hello. While rebuilding our webserver, I am trying to install modperl 2.0.3 under Apache 2.0.52 on RHEL4. However, when I run 'perl Makefile.PL', it says it can't find apxs. I am quite sure it isn't installed -find doesn't find it, so it definitely doesn't exist under its own name- but if I under

Re: Apxs not installed

2007-05-23 Thread William A. Rowe, Jr.
Martijn wrote: > Hello. > > While rebuilding our webserver, I am trying to install modperl 2.0.3 > under Apache 2.0.52 on RHEL4. However, when I run 'perl Makefile.PL', > it says it can't find apxs. I am quite sure it isn't installed -find > doesn't find it, so it definitely doesn't exist under it

Re: Apxs not installed

2007-05-23 Thread Tyler Gee
On 5/23/07, Martijn <[EMAIL PROTECTED]> wrote: Hello. While rebuilding our webserver, I am trying to install modperl 2.0.3 under Apache 2.0.52 on RHEL4. However, when I run 'perl Makefile.PL', it says it can't find apxs. I am quite sure it isn't installed -find doesn't find it, so it definitely

segmentation fault.

2007-05-23 Thread Tyler Bird
Ok, I have a system I converted from cgi to mod_perl. We recently upgraded to mod_perl 2.0 and apache 2.2 on RHL5 I am having a problem. When I refresh a certain page 5 times or about ( it's completely random ) The page renders fine, but in my logs I see that an apache child died because o

Re: segmentation fault.

2007-05-23 Thread Jonathan Vanasco
This happened to me once (actually many times, but I figured out my approach on the first time), I could only figure out one way to handle it, and its been the one thing I hate about perl ever since (as I know there HAS to be a bettter way ) What I do: package MyApp::Debug;

Re: segmentation fault.

2007-05-23 Thread Dondi M. Stroma
I've also gotten segfaults from reading a bad cookie. Another segfault problem I experienced was caused by using a lexical variable in a sub in a Registry script that was declared outside of the sub (specifically, it was a CGI.pm object). Those segfaults seemed to happen randomly only about 10 t

sharing data structures between scripts (forms)

2007-05-23 Thread Mark Henry
Hi, I've done a decent amount of work in a particular script which reads a (flatfile) database, builds some data structures (hashes of arrays of arrays) does some processing and spits out a form. I then want the user to choose some values on the form, submit it, then I would act upon that, ultim

Re: sharing data structures between scripts (forms)

2007-05-23 Thread Jonathan Vanasco
Mark- you can not ensure that in-memory structures will be processed by the same server/child, let alone be available to another script. You'll need to find an inter-process store for your persistent item if you're using something that provides for sessions ( ie Apache::Session ) you can j

RE: mod_perl not loading into apache error.

2007-05-23 Thread Randy Kobes
On Tue, 22 May 2007, Sravan Garlapati wrote: Hi Friends, I am unable to install mod_perl-2.0.3 in my system(Windows). I am using apache version 2 Perl version 5.6.1. I have given from DOS command prompt. I put mod_perl-2.03 directory and its file in C:\Perl C:\Perl\mod_per-2.0.3> Perl makefile

Re: segmentation fault.

2007-05-23 Thread Philippe M. Chiasson
Tyler Bird wrote: > Ok, > > I have a system I converted from cgi to mod_perl. > > We recently upgraded to mod_perl 2.0 and apache 2.2 on RHL5 > > I am having a problem. When I refresh a certain page 5 times or about ( > it's completely random ) > > The page renders fine, but in my logs I see