Re: Error during the installation of Apache??

2007-10-24 Thread Torsten Foertsch
On Monday 22 October 2007, Vishnu Mohanan wrote: When I checked in the system, there is no folder named APXS. The APXS folder is not creating in the /usr/local/apache2/bin/ directory. I am using Fedora 5 version. Is APXS is necessary? Then how will we create that? apxs is a program

Re: FYI

2007-10-24 Thread Philippe M. Chiasson
Fred Moyer wrote: There was a recent sytems upgrade which probably caused this. Looking into it. Yup, caused by a switch to a 64 bit OS. A couple of CPAN packages need rebuilding, I am taking care of it. Philippe M.

Re: Finding memory leaks

2007-10-24 Thread Philippe M. Chiasson
Chetan Sarva wrote: Hey all, We've got an aging web app running on Apache/1.3.34 (Ubuntu) and mod_perl/1.29 which we know has several memory leaks --- apache has been crashing of late and we'd like to stop that. For the time being we're using Apache::SizeLimit but would like to

Re: Rose::DB and Apache::DBI

2007-10-24 Thread Perrin Harkins
On 10/23/07, John Siracusa [EMAIL PROTECTED] wrote: My problems were more along the lines of not realizing that an internal subrequest was happening, which (if memory serves) would end up clearing pnotes (or maybe my code was clearing/resetting pnotes when re-traversed for the subrequest). In

Re: Rose::DB and Apache::DBI

2007-10-24 Thread Perrin Harkins
On 10/24/07, John Siracusa [EMAIL PROTECTED] wrote: Well, if we trust register_cleanup() to clean up db connections and so on, why not trust it to reset globals too? The problems I had involved unpredictable order of execution with multiple cleanups. I'm fuzzy on the details though, since this

Re: Finding memory leaks

2007-10-24 Thread Chetan Sarva
On Oct 24, 2007, at 3:59 AM, Philippe M. Chiasson wrote: Have you tried Apache::Leak? http://search.cpan.org/~gozer/mod_perl-1.30/Leak/Leak.pm Everything I've read about Apache::Leak says it points out lots of false positives and can be a huge waste of time. Maybe I'll give it a try

mod_perl MVC framework.

2007-10-24 Thread Tyler Bird
Hi List, Hey I was wondering if there was any MVC framework that anybody on this list could point me to that work work well with mod_perl. We are having difficulty finding a good MVC framework for perl. I have looked at HTML::Mason and the template toolkit today. I am not quite sure mason

Re: mod_perl MVC framework.

2007-10-24 Thread adam . prime
there's a list here: http://perl.apache.org/products/app-server.html Adam Quoting Tyler Bird [EMAIL PROTECTED]: Hi List, Hey I was wondering if there was any MVC framework that anybody on this list could point me to that work work well with mod_perl. We are having difficulty finding a good

Re: mod_perl MVC framework.

2007-10-24 Thread David Kaufman
Tyler Bird [EMAIL PROTECTED] wrote... Hi List, Hi Tyler, Hey I was wondering if there was any MVC framework that anybody on this list could point me to that work work well with mod_perl. We are having difficulty finding a good MVC framework for perl. /me points you to - CGI::Application

Re: mod_perl MVC framework.

2007-10-24 Thread Juan Jose Natera
Hi Tyler We are having difficulty finding a good MVC framework for perl. I have looked at HTML::Mason and the template toolkit today. I am not quite sure mason is a MVC framework. The template toolkit looks promising. Neither TT or Mason are MVC frameworks, but they can be used to provide

Re: mod_perl MVC framework.

2007-10-24 Thread Mark Blackman
On 24 Oct 2007, at 17:26, Tyler Bird wrote: Hi List, Hey I was wondering if there was any MVC framework that anybody on this list could point me to that work work well with mod_perl. We are having difficulty finding a good MVC framework for perl. I have looked at HTML::Mason and the

Re: mod_perl MVC framework.

2007-10-24 Thread gautam chekuri
Catalyst is a MVC framework we can use with mod_perl http://www.catalystframework.org/ On 10/24/07, Tyler Bird [EMAIL PROTECTED] wrote: Hi List, Hey I was wondering if there was any MVC framework that anybody on this list could point me to that work work well with mod_perl. We are having

Re: Finding memory leaks

2007-10-24 Thread Manoj Bist
The following always works for me: Run apache2(pre fork) with '-X' option under valgrind: In my system it looks something like this: valgrind --leak-check=full /usr/sbin/apache2 -X If you are using any 'XS' based perl modules, it would show memory leaks/errors, if any in any of the loaded

SCRIPT_NAME PATH_INFO %ENV variables

2007-10-24 Thread Lev Lvovsky
judging by this thread: http://www.mail-archive.com/[EMAIL PROTECTED]/msg15609.html This might be an old question but I'm not entirely sure I understand the answer spelled out in the response. I have the following Location setting in my httpd.conf (via an include file): Location

DirectoryIndex

2007-10-24 Thread Marilyn Burgess
Hello, I'm running modperl2 on Debian from the libapache2-mod-perl2 debian package and I can't get the DirectoryIndex rule to work properly. I have the line DirectoryIndex index.html index.cgi index.pl index.php index.xhtml in apache2.conf, and in the file default in sites-available... nether

Re: SCRIPT_NAME PATH_INFO %ENV variables

2007-10-24 Thread Randy Kobes
On Wed, 24 Oct 2007, Lev Lvovsky wrote: judging by this thread: http://www.mail-archive.com/[EMAIL PROTECTED]/msg15609.html This might be an old question but I'm not entirely sure I understand the answer spelled out in the response. I have the following Location setting in my httpd.conf

Re: DirectoryIndex

2007-10-24 Thread Geoffrey Young
Marilyn Burgess wrote: Hello, I'm running modperl2 on Debian from the libapache2-mod-perl2 debian package and I can't get the DirectoryIndex rule to work properly. I have the line DirectoryIndex index.html index.cgi index.pl index.php index.xhtml in apache2.conf, and in the file

Re: mod_perl MVC framework.

2007-10-24 Thread Foo JH
What is fast to cook, good to eat is HTML::Template. No XML, easy abstraction between your web designer and developer. Tyler Bird wrote: Hi List, Hey I was wondering if there was any MVC framework that anybody on this list could point me to that work work well with mod_perl. We are having

Re: SCRIPT_NAME PATH_INFO %ENV variables

2007-10-24 Thread Randy Kobes
On Wed, 24 Oct 2007, Lev Lvovsky wrote: On Oct 24, 2007, at 4:31 PM, Randy Kobes wrote: The code in CGI::Apache2::Wrapper: http://cpan.uwinnipeg.ca/htdocs/CGI-Apache2-Wrapper/CGI/Apache2/Wrapper.pm.html#Apache2_URI provides a CGI-compatible url() method based on Apache2::URI:

Re: SCRIPT_NAME PATH_INFO %ENV variables

2007-10-24 Thread Lev Lvovsky
On Oct 24, 2007, at 9:01 PM, Randy Kobes wrote: I misunderstood your question - I thought you were trying to do this just under mod_perl, without CGI.pm. The CGI::Apache2::Wrapper package and CGI.pm are intended to give the same results, assuming the tests pass: