Re: AuthCookie on Win32

2005-01-29 Thread Octavian Rasnita
I'm not a big specialist, but try setting Apache to KeepAlive Off. It might wait until a certain request is finished before allowing a new request. Teddy - Original Message - From: Gary M. Spieler [EMAIL PROTECTED] To: modperl@perl.apache.org Sent: vineri, 28 ianuarie 2005 23:46 PM

Re: AuthCookie on Win32

2005-01-29 Thread Randy Kobes
On Fri, 28 Jan 2005, Gary M. Spieler wrote: We're running Apache 1.3.20, modperl 1.25_01-dev, and AuthCookie 3.00 (yeah, I know they're old, but I don't have any say about that). We were having reports of some slowness issues as of late, so I got access to the access logs. What I found out

Re: [OSCon 2005 guidelines] what talks to submit

2005-01-29 Thread Slava
Hi everybody, On Sat, 2005-01-29 at 16:10, Stas Bekman wrote: To remind: OSCON will be August 1-5 in Portland, OR. http://conferences.oreillynet.com/os2005/ Just like Perrin did you are more than welcome to submit your ideas to the list first, and get some feedback from the others. I can

Re: [OSCon 2005 guidelines] what talks to submit

2005-01-29 Thread Stas Bekman
Slava wrote: Hi everybody, On Sat, 2005-01-29 at 16:10, Stas Bekman wrote: To remind: OSCON will be August 1-5 in Portland, OR. http://conferences.oreillynet.com/os2005/ Just like Perrin did you are more than welcome to submit your ideas to the list first, and get some feedback from the others.

Re: [OSCon 2005 guidelines] what talks to submit

2005-01-29 Thread Slava Bizyayev
Thanks, Stas! On Sat, 2005-01-29 at 17:33, Stas Bekman wrote: ... May be nobody knows about your work, and you simply need to work on advertising it more. For example by answering more questions here ... I really don't mind to answer the list questions when capable, but during the last year

Re: [OSCon 2005 guidelines] what talks to submit

2005-01-29 Thread Stas Bekman
Slava Bizyayev wrote: Thanks, Stas! On Sat, 2005-01-29 at 17:33, Stas Bekman wrote: ... May be nobody knows about your work, and you simply need to work on advertising it more. For example by answering more questions here ... I really don't mind to answer the list questions when capable, but

Apache::DBI

2005-01-29 Thread Ian Joyce
I'm running Apache 1.33 and mod_perl 1.29. My question is how can I use Apache::DBI for connection pooling for my DBD::mysql connections and not use it for my DBD::ODBC conections. Is this even possible? I don't want any connection pooling at all for DBD::ODBC for reasons I won't get into.

Re: Apache::DBI

2005-01-29 Thread Perrin Harkins
On Sat, 2005-01-29 at 22:01 -0600, Ian Joyce wrote: My question is how can I use Apache::DBI for connection pooling for my DBD::mysql connections and not use it for my DBD::ODBC conections. Pass connect_method = 'connect' as one of the parameters to DBI- connect() for the DBD::ODBC connections.