Re: [PHP] Starting PHP script with crontab

2001-05-09 Thread Anuradha Ratnaweera
What about wget foo.bar.com/script.php Anuradha On Thu, 3 May 2001, Noah Spitzer-Williams wrote: > is there a service on the web that can do this for you? i once found a site > that would accept a url and an interval and would retrieve that url > (therefore running any code you had in there)

Re: [PHP] Starting PHP script with crontab

2001-05-03 Thread Michael Kimsal
Noah Spitzer-Williams wrote: > is there a service on the web that can do this for you? i once found a site > that would accept a url and an interval and would retrieve that url > (therefore running any code you had in there) on your interval > > - Noah cronservice.com is one. -- PHP Genera

Re: [PHP] Starting PHP script with crontab

2001-05-03 Thread MaD dUCK
also sprach Noah Spitzer-Williams (on Thu, 03 May 2001 03:34:02PM -0400): > > > with lynx (lynx http://www.domain.nl/test.php) as a commandline within did you use 'lynx -dump '??? martin; (greetings from the heart of the sun.) \ echo mailto: !#^."<*>"|tr "<*> mailto:"; net@mad

Re: [PHP] Starting PHP script with crontab

2001-05-03 Thread Noah Spitzer-Williams
is there a service on the web that can do this for you? i once found a site that would accept a url and an interval and would retrieve that url (therefore running any code you had in there) on your interval - Noah "Anuradha Ratnaweera" <[EMAIL PROTECTED]> wrote in message Pine.LNX.4.21.010502111

Re: [PHP] Starting PHP script with crontab

2001-05-02 Thread Anuradha Ratnaweera
If you are not careful, anyone will be able to run the script! Anuradha On Thu, 19 Apr 2001, Bertjan Schrader wrote: > I need tot start a PHP script at night with the crontab. I tried to do it > with lynx (lynx http://www.domain.nl/test.php) as a commandline within the > crontab. Lynx is start

Re: [PHP] Starting PHP script with crontab

2001-04-19 Thread Chris Lee
compile php as a cgi then do this php -q test.php done. no problem, it will probably install php into /usr/local/bin make sure its in the path -- Chris Lee [EMAIL PROTECTED] ""Bertjan Schrader"" <[EMAIL PROTECTED]> wrote in message 9bmddj$hdd$[EMAIL PROTECTED]">news:9bmddj$hdd$[EMAIL P

Re: [PHP] Starting PHP script with crontab

2001-04-19 Thread Steve Lawson
Sup, You have to make the output write to a file. Like lynx http://www.page.come > /home/me/bleh.htm SL. - Original Message - From: "Bertjan Schrader" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 4:15 AM Subject: [PHP] Startin

[PHP] Starting PHP script with crontab

2001-04-19 Thread Bertjan Schrader
I need tot start a PHP script at night with the crontab. I tried to do it with lynx (lynx http://www.domain.nl/test.php) as a commandline within the crontab. Lynx is starting but the PHP script is not working. Anyone an idea how to do it? OS: Redhat Linux 5.2 Apache PHP as a apache module thank