Re: Building and installing mod_perl as a complete package

2010-11-24 Thread Torsten Förtsch
On Wednesday, November 24, 2010 02:28:40 Mohit Anchlia wrote: > 1. Is it possible to build it such that I don't have to run make > install on every web server? Is there a way to build mod_perl that > contains everything including perl modules? This will help in install > and keeping track of mod_p

Re: Building and installing mod_perl as a complete package

2010-11-24 Thread Vegard Vesterheim
On Tue, 23 Nov 2010 17:28:40 -0800 Mohit Anchlia wrote: > I was able to build mod_perl.so . But I noticed that "make install" > copies whole bunch of perl modules under non-apache directories. > > My question, > > 1. Is it possible to build it such that I don't have to run make > install on every

Apache2::RequestIO sendfile

2010-11-24 Thread Mohit Anchlia
If I use $r->sendfile($filenam) and the file is always the same then does mod_perl open and read this file on every execution or is it cached? I am wondering if it will be better to copy the contents of file (500bytes) in the perl module instead. Is there a overhead or chances of running out of fi

Apache::ReadConfig and RewriteRule

2010-11-24 Thread Mithun Bhattacharya
Hi, I am trying to setup some rules using Apache::ReadConfig (to setup Apache config using mod_perl) and was wondering how am I supposed to define the RewriteCond and RewriteRule entries. I would like to implement something similar to the following inside a VirtualHost. RewriteEngine on Rewr

unsubscribe

2010-11-24 Thread Devin Austin
-- Devin Austin http://www.codedright.net 9702906669 - Cell

Re: Apache2::RequestIO sendfile

2010-11-24 Thread Torsten Förtsch
On Wednesday, November 24, 2010 21:48:59 Mohit Anchlia wrote: > If I use $r->sendfile($filenam) and the file is always the same then > does mod_perl open and read this file on every execution or is it > cached? I am wondering if it will be better to copy the contents of > file (500bytes) in the per