Re: (slightly OT) postgresql? firebird? mysql?

2006-03-01 Thread Perrin Harkins
On Mon, 2006-02-20 at 21:23 +0100, Daniel McBrearty wrote: I'm currently using mysql, but I'm considering changing over to firebird or postgre. Anyone have any reasoned loves/hates/useful experiences to pass on? If you aren't already using InnoDB tables in MySQL, try that first. It may save

Perl Script using MapToStorageHandler

2006-03-01 Thread Glenn Martin
Ive got a script im wokring on that uses the PerlMapToStorageHandler at that point it adds to the Apache Configuration using the Incomming URI, creating Location/Directory Sections, and an Alias or two... However, i need to be able to remove these changes after the request is completed... How

Re: 3 questions: start/stop/restart ; db ; startup.pl

2006-03-01 Thread Perrin Harkins
On Fri, 2006-02-24 at 21:38 -0500, Jonathan Vanasco wrote: i seem too often to be unable to do a restart of apache. instead of a restart, I need to stop, then start, otherwise my startup.pl file yells at me. What's the error message? on my production box, during a start, i

Re: Perl Script using MapToStorageHandler

2006-03-01 Thread Andy Armstrong
On 1 Mar 2006, at 21:44, Glenn Martin wrote: Ive got a script im wokring on that uses the PerlMapToStorageHandler at that point it adds to the Apache Configuration using the Incomming URI, creating Location/Directory Sections, and an Alias or two... However, i need to be able to remove these

Re: Perl Script using MapToStorageHandler

2006-03-01 Thread Glenn Martin
If i am doing this wrong, how would you suggest doing it? Glenn R. Martin --- Andy Armstrong [EMAIL PROTECTED] wrote: On 1 Mar 2006, at 21:44, Glenn Martin wrote: Ive got a script im wokring on that uses the PerlMapToStorageHandler at that point it adds to the Apache Configuration using

Re: Perl Script using MapToStorageHandler

2006-03-01 Thread Andy Armstrong
On 1 Mar 2006, at 22:13, Philippe M. Chiasson wrote: And you get pre-request behaviour just like you wanted. And it's tons faster too ;-) Yup, what he said. -- Andy Armstrong, hexten.net

Re: Perl Script using MapToStorageHandler

2006-03-01 Thread Glenn Martin
Sounds great, but how would i do something simular to: $r-add_config([sprintf('LocationMatch %s/?', $uripath), 'DirectoryIndex .', 'Options +Indexes', 'Dav svn', sprintf(SVNPath %s,

Re: Perl Script using MapToStorageHandler

2006-03-01 Thread Glenn Martin
Sounds great, but how would i do something simular to: $r-add_config([sprintf('LocationMatch %s/?', $uripath), 'DirectoryIndex .', 'Options +Indexes', 'Dav svn', sprintf(SVNPath %s,

How is modperl 2 working with apache 2 under worker mpm?

2006-03-01 Thread Khai Doan
How is modperl 2 working with apache 2 under worker mpm? Has anyone successfully deploy modperl2 using worker mpm? I recently wrote a script in perl using ithread and it kept failing. Is there any guideline for writing modperl 2 handler using worker mpm? Thanks Khai

Re: (slightly OT) postgresql? firebird? mysql?

2006-03-01 Thread Jonathan Vanasco
To add- Make sure you migrate ALL tables AND your default table type (ie db type) from MyISAM to innodb ONLY innodb tables are transaction safe. If you have a multi-table transaction where 1 table is not inno, you'll go crazy trying to figure out why all your rollbacks seem to corrupt

Re: How is modperl 2 working with apache 2 under worker mpm?

2006-03-01 Thread William A. Rowe, Jr.
Khai Doan wrote: How is modperl 2 working with apache 2 under worker mpm? Has anyone successfully deploy modperl2 using worker mpm? I recently wrote a script in perl using ithread and it kept failing. Is there any guideline for writing modperl 2 handler using worker mpm? Use the same

Re: Perl Script using MapToStorageHandler

2006-03-01 Thread Torsten Foertsch
On Wednesday 01 March 2006 23:20, Glenn Martin wrote: Sounds great, but how would i do something simular to:       $r-add_config([sprintf('LocationMatch %s/?', $uripath),                           'DirectoryIndex .',                           'Options +Indexes',