RE: [PHP-DB] running PHP from the cron

2001-02-19 Thread David Benson
I have PHP installed as an Apache module and I can't have it as CGI.. now I'm looking into ways to run PHP scripts off the cron, and I saw Rebuilt php again and don't specify the apache configuration option. This will build php as a CGI program which you can then use in cron. Does anyone else

RE: [PHP-DB] running PHP from the cron

2001-02-19 Thread Nicholas W. Miller
Hello, I run my PHP crons like this: 0 6 * * * /usr/local/bin/lynx -source "http://www.domain.com/file.php" This is not the most secure of course, as the file is below the root and could be hit by any user. But works for my particular case ... Anyone know of a method to make this more

RE: [PHP-DB] running PHP from the cron

2001-02-19 Thread Simon R Jones
I run my PHP crons like this: 0 6 * * * /usr/local/bin/lynx -source "http://www.domain.com/file.php" This is not the most secure of course, as the file is below the root and could be hit by any user. But works for my particular case ... Anyone know of a method to make this more secure

Re: [PHP-DB] running PHP from the cron

2001-02-19 Thread Mark @ 10base-T
Jones" [EMAIL PROTECTED] Date: Mon, 19 Feb 2001 17:27:02 - To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] running PHP from the cron I have PHP installed as an Apache module and I can't have it as CGI.. now I'm looking into ways to run PHP scripts off the cron, and I saw Rebuilt