Re: Apache::Cookie -> Apache2::Cookie API Change?

2006-09-22 Thread Derek R. Price
Philip M. Gollucci wrote: > http://svn.apache.org/viewvc?view=rev&rev=447770 > How's that ? Looks good to me. Dave? Derek -- Derek R. Price CVS Solutions Architect Get CVS support at Ximbiot ! v: +1 248.835.1260 f: +1 248.835.1263

running Perl CGI using mod_perl 2 and suexec?

2006-09-22 Thread Laurent MARTIN
Hi!First of all this is my very first post on this mailing list. I've browsed the web but I haven't been able to find the answer I'm looking for, so..my question: is it possible to run a Perl (5.8.6) CGI using Apache 2.2.3 w/ mod_perl 2.0.2 and suexec enabled? It seems that the answer is "no!"

Re: Logging to a file

2006-09-22 Thread Jonathan Vanasco
On Sep 22, 2006, at 1:35 PM, Drew Wilson wrote: Have you looked at pgLOGd? Or its successor, dbWebLog? Both of these claim to offer low-overhead robust logging. yeah. no dice. the problem isn't about the overhead on apache-- its about the overhead of the database. i believe pgLogD used

Re: Logging to a file

2006-09-22 Thread Drew Wilson
Have you looked at pgLOGd? Or its successor, dbWebLog? Both of these claim to offer low-overhead robust logging. Drew On Sep 22, 2006, at 7:52 AM, Jonathan Vanasco wrote: On Sep 22, 2006, at 6:33 AM, Sean Davis wrote: You can create a simple logger under mod_perl that logs to a database d

Re: Logging to a file

2006-09-22 Thread Frank Wiles
On Fri, 22 Sep 2006 03:38:52 -0700 "Philip M. Gollucci" <[EMAIL PROTECTED]> wrote: > Sean Davis wrote: > >>> i not need to log some basic request info ( comparable to what is > >>> in the access log ) , along with the value of a certain cookie if > >>> it exists- for later parsing ( faster than to

Re: Logging to a file

2006-09-22 Thread Jonathan Vanasco
On Sep 22, 2006, at 6:33 AM, Sean Davis wrote: You can create a simple logger under mod_perl that logs to a database directly using DBI. You would, of course, want to benchmark anything like this, but it isn't hard to code one. No DBI. This is a high traffic server. I can't handle the

Re: Logging to a file

2006-09-22 Thread Philip M. Gollucci
Sean Davis wrote: >>> i not need to log some basic request info ( comparable to what is in >>> the access log ) , along with the value of a certain cookie if it >>> exists- for later parsing ( faster than tossing into a db ) mod_log_sql (written in C) works in both httpd 1.x and 2.x. Its been "prof

Re: Logging to a file

2006-09-22 Thread Sean Davis
On Friday 22 September 2006 03:34, James Smith wrote: > Can you get away with using the apache logs to do this - use > mod_log_config and add save your information in a sub_process_env > variable - and add a %{my_env_var} entry into the logging directive? > > James > > On Fri, 22 Sep 2006, Jonathan

Re: Logging to a file

2006-09-22 Thread James Smith
Can you get away with using the apache logs to do this - use mod_log_config and add save your information in a sub_process_env variable - and add a %{my_env_var} entry into the logging directive? James On Fri, 22 Sep 2006, Jonathan wrote: > I need to introduce some new functionality to my webap