Re: Apache Subprocess

2007-06-22 Thread Scott Gifford
<[EMAIL PROTECTED]> writes: > Hi Scott, > > I do not see anything in error log, The print line before and after the > command also works fine,The webserver has permission to run the command > since I can execute the same command using backtick like > `/tmp/in_out_err.pl` Huh, that is very odd. A

Re: opinions of mod_perl users on MIME email sending

2007-06-22 Thread Jonathan Vanasco
On Jun 22, 2007, at 1:24 PM, John ORourke wrote: The database idea has some good uses - I run 120 shop sites and of course they're constantly sending out account confirmations, order updates, etc. Currently there's no way of easily tracking what happened to an email or finding out when, fo

Re: opinions of mod_perl users on MIME email sending

2007-06-22 Thread Jonathan Vanasco
On Jun 22, 2007, at 12:52 PM, Clinton Gormley wrote: Of course. My daemon wrapper code checks if that particular job is already running, and if so skips it. If the job is still running after the Nth skip, it sends me a warning email awesome. that solves just about any problem you can ha

Re: opinions of mod_perl users on MIME email sending

2007-06-22 Thread John ORourke
Jonathan Vanasco wrote: On Jun 22, 2007, at 4:13 AM, Clinton Gormley wrote: Disadvantage: - you can wait for up to a minute before the mail gets processed. Although, with Schedule::Cron, you can schedule jobs every second The database idea has some good uses - I run 120 shop sites and of

Re: opinions of mod_perl users on MIME email sending

2007-06-22 Thread Jonathan Vanasco
On Jun 22, 2007, at 4:13 AM, Clinton Gormley wrote: Disadvantage: - you can wait for up to a minute before the mail gets processed. Although, with Schedule::Cron, you can schedule jobs every second you should write something into the first-line of the code that looks to see if there's a

Re: opinions of mod_perl users on MIME email sending

2007-06-22 Thread Clinton Gormley
> you should write something into the first-line of the code that looks > to see if there's a job already running; and quits if there is. Of course. My daemon wrapper code checks if that particular job is already running, and if so skips it. If the job is still running after the Nth skip, it

RE: Apache Subprocess

2007-06-22 Thread khan.sajid
Hi Scott, I do not see anything in error log, The print line before and after the command also works fine,The webserver has permission to run the command since I can execute the same command using backtick like `/tmp/in_out_err.pl` Do we need to configure anything so that apache can start executi

Re: opinions of mod_perl users on MIME email sending

2007-06-22 Thread Clinton Gormley
> > Yeah I've seen some neat twisted stuff, POE might be a reasonable > > alternative in the Perl space. > > POE is pretty neat. I haven't played with it much, but i liked it. > > I've done a lot of twisted stuff in the past , so its very natural to > me. I brought it up over POE though