Re: [PHP] [php] scheduled task in php

2009-04-03 Thread Jan G.B.
2009/4/3 Chris dmag...@gmail.com: Andrew Williams wrote: I want to created a window schedule a task that will run every 2 minutes and run my php script(www.domain.com/script.php).  But I need to know how to create a php.exe that I can select as a window schedule a task so that the php.exe

Re: [PHP] [php] scheduled task in php

2009-04-03 Thread Andrew Williams
does anyone knows the the following is not working: C:\PHP\php.exe D:\DEMO\index.php?action=runrun=1 On Thu, Apr 2, 2009 at 2:06 PM, Virgilio Quilario virgilio.quila...@gmail.com wrote: Please how can you run a timed php script file via window scheduled task. or how can u execute a php

Re: [PHP] [php] scheduled task in php

2009-04-03 Thread j's php general
On Fri, Apr 3, 2009 at 7:49 PM, Andrew Williams andrew4willi...@gmail.com wrote: does anyone knows the the following is not working: C:\PHP\php.exe  D:\DEMO\index.php?action=runrun=1 The querystring does not have an effect from the command line, it is part of the HTTP protocol. Use console

[PHP] [php] scheduled task in php

2009-04-02 Thread Andrew Williams
All, Please how can you run a timed php script file via window scheduled task. or how can u execute a php script on a a time interval for instance every 4minutes -- Best Wishes Andrew Williams

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread Michel OLIVIER
hi, with a cron and wget? 2009/4/2 Andrew Williams andrew4willi...@gmail.com: All, Please how can you run a timed php script file via window scheduled task. or how can u execute a php script on a a time interval for instance every 4minutes -- Best Wishes Andrew Williams -- PHP General

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread Virgilio Quilario
Please how can you run a timed php script file via window scheduled task. or how can u execute a php script on a a time interval for instance every 4minutes hi Andrew, first schedule a task, locate and select your php.exe, and schedule it to run daily for the moment. after creating it, you

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread Jan G.B.
run a timed php script file via window scheduled task. or how can u execute a php script on a a time interval for instance every 4minutes -- Best Wishes Andrew Williams -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread Kyle Smith
a timed php script file via window scheduled task. or how can u execute a php script on a a time interval for instance every 4minutes -- Best Wishes Andrew Williams -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread Andrew Williams
. Solution please On Thu, Apr 2, 2009 at 4:58 PM, Andrew Williams andrew4willi...@gmail.comwrote: On Thu, Apr 2, 2009 at 2:06 PM, Virgilio Quilario virgilio.quila...@gmail.com wrote: Please how can you run a timed php script file via window scheduled task. or how can u execute a php

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread George Larson
? 2009/4/2 Andrew Williams andrew4willi...@gmail.com: All, Please how can you run a timed php script file via window scheduled task. or how can u execute a php script on a a time interval for instance every 4minutes -- Best Wishes Andrew Williams -- PHP General Mailing List (http

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread Chris
Andrew Williams wrote: I want to created a window schedule a task that will run every 2 minutes and run my php script(www.domain.com/script.php). But I need to know how to create a php.exe that I can select as a window schedule a task so that the php.exe file can execute