Re: [PHP] scheduled tasks

2003-06-06 Thread Mark
If the issue is running a cron job on the server, you could run the cron job or scheduled task on a client with lynx. The client would just need to be on and have access to the server at the time it fires up the task. --- Matt Palermo <[EMAIL PROTECTED]> wrote: > Does anyone know if there is any o

RE: [PHP] scheduled tasks

2003-06-06 Thread Jay Blanchard
[snip] Does anyone know if there is any other way to have a php script run automatically (everyday, or week, or month, etc...) besides a cron job or scheduled task? Thanks. [/snip] I suppose that you could run a script with a sleep statement for x time, the re-direct to itself restarting the slee

[PHP] scheduled tasks

2003-06-06 Thread Matt Palermo
Does anyone know if there is any other way to have a php script run automatically (everyday, or week, or month, etc...) besides a cron job or scheduled task? Thanks. Matt

RE: [PHP] scheduled tasks

2002-02-16 Thread B Richards
What do people think about making a cron job call a page by doing a lynx http://www.site.com/automatedtasks.php every hour? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: February 16, 2002 3:02 PM To: Rodney Davis Cc: [EMAIL PROTECTED] Subject: Re: [PHP] scheduled

RE: [PHP] scheduled tasks

2002-02-16 Thread B Richards
] scheduled tasks At 06:41 AM 2/16/2002 -0800, [EMAIL PROTECTED] wrote: >"Is currently anyway of doing scheduled tasks with PHP (without using >crontab)? " >"What's wrong with using cron?" > >I'm building an OSS site where the PostgreSQL data base mainten

Re: [PHP] scheduled tasks

2002-02-16 Thread Erik Price
On Friday, February 15, 2002, at 03:03 PM, Rodney Davis wrote: > Is currently anyway of doing scheduled tasks with PHP (without using > crontab)? For example, using an email script to send out e-mail > reminders every Monday or something like that? One way to do it (stole this from my 'Beginn

Re: [PHP] scheduled tasks

2002-02-16 Thread Michael Sims
At 06:41 AM 2/16/2002 -0800, [EMAIL PROTECTED] wrote: >"Is currently anyway of doing scheduled tasks with PHP (without using >crontab)? " >"What's wrong with using cron?" > >I'm building an OSS site where the PostgreSQL data base maintenance, >email sending, stats gathering, number crunching an

Re: [PHP] scheduled tasks

2002-02-16 Thread flume33
"Is currently anyway of doing scheduled tasks with PHP (without using crontab)? " "What's wrong with using cron?" I'm building an OSS site where the PostgreSQL data base maintenance, email sending, stats gathering, number crunching and graph plotting needs to be automated. My target audience

Re: [PHP] scheduled tasks

2002-02-15 Thread Michael Sims
At 10:03 AM 2/15/2002 -1000, Rodney Davis wrote: >Is currently anyway of doing scheduled tasks with PHP (without using >crontab)? For example, using an email script to send out e-mail >reminders every Monday or something like that? What's wrong with using cron? -- PHP General Mailing List (ht

[PHP] scheduled tasks

2002-02-15 Thread Rodney Davis
Is currently anyway of doing scheduled tasks with PHP (without using crontab)? For example, using an email script to send out e-mail reminders every Monday or something like that? Thanks, Rodney