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 wrote: > does anyone knows the the following is not working: > > C:\PHP\php.exe  D:\DEMO\index.php?action=run&run=1 > The querystring does not have an effect from the command line, it is part of the HTTP protocol. Use console options instead and use

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=run&run=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

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

2009-04-03 Thread Jan G.B.
2009/4/3 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 c

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 www.domain.com/script.ph

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

2009-04-02 Thread George Larson
On Thu, Apr 2, 2009 at 10:12 AM, Kyle Smith wrote: > There's no need for third party software, windows has a scheduled task > system. > > Make a scheduled task and for the application select the php executable > (Maybe C:\PHP\bin\php.exe, or some such.). Once the wizard is complete > select the c

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

2009-04-02 Thread Andrew Williams
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 www.domain.com/script.php at a time interval. Sol

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

2009-04-02 Thread Kyle Smith
There's no need for third party software, windows has a scheduled task system. Make a scheduled task and for the application select the php executable (Maybe C:\PHP\bin\php.exe, or some such.). Once the wizard is complete select the checkbox that says "Open the task when I click Finish". Now

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

2009-04-02 Thread Jan G.B.
Or even with CRONw if "via window" is an indicator for the evil OS. http://cronw.sourceforge.net/ (I personally didn't test this software) bye 2009/4/2 Michel OLIVIER : > hi, > with a cron and wget? > > 2009/4/2 Andrew Williams : >> All, >> >> Please how can you run a timed php script file via win

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 Michel OLIVIER
hi, with a cron and wget? 2009/4/2 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 > -- PHP General Mailing List (h

[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