Re: [PHP] activating php scripts via cron

2002-07-16 Thread Jason Wong
On Tuesday 16 July 2002 20:42, Andy wrote: Hi there, I am wondering if it would be possible to activate a php script via cron periodicly. Can anybody give me a hint on that or knows a good article? Search archives for cron OR wget -- Jason Wong - Gremlins Associates - www.gremlins.com.hk

RE: [PHP] activating php scripts via cron

2002-07-16 Thread Jay Blanchard
[snip] I am wondering if it would be possible to activate a php script via cron periodicly. Can anybody give me a hint on that or knows a good article? [/snip] If you can run PHP from the command line, i.e. php thisscript.php it means that you have installed PHP as a standalone executable. If

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Kondwani Spike Mkandawire
Hi Jay: If you can run PHP from the command line, i.e. php thisscript.php it means that you have installed PHP as a standalone executable. If so you What do you mean standalone? If this is in reference to not running it as a module of Apache, then my set up must be weird, because I can

RE: [PHP] activating php scripts via cron

2002-07-16 Thread Jay Blanchard
: Re: [PHP] activating php scripts via cron Hi Jay: If you can run PHP from the command line, i.e. php thisscript.php it means that you have installed PHP as a standalone executable. If so you What do you mean standalone? If this is in reference to not running it as a module of Apache

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Andy
Tuesday, July 16, 2002 7:54 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] activating php scripts via cron Hi Jay: If you can run PHP from the command line, i.e. php thisscript.php it means that you have installed PHP as a standalone executable. If so you What do you mean st

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Jason Wong
On Tuesday 16 July 2002 23:36, Andy wrote: so how do you install a second php version?? If you compile it (besides with what kind of flags) and then do a make and a make install the original version will be replaced, right? Just doing: ./configure; make; make install will compile and

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Bas Jobsen
Instead of a second version, you can call your script via lynx: TERM=vt100 0 * * * * lynx -dump http://www.domeinnaam.nl/yourscript.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Andy
sounds logical, but what happens with my other php version, where I need the flags? will it still be working? And where is this standalone php version gonna be installed? Andy Jason Wong [EMAIL PROTECTED] schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Tuesday 16 July

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Michael Hall
The most important difference is, I believe, whether you use apxs during compilation or not. Using ./configure --with-apxs will build a DSO module, leaving --with-apxs out will build a standalone module. There may be more to it than that, though. Michael On Tue, 16 Jul 2002, Andy wrote:

Re: [PHP] activating php scripts via cron

2002-07-16 Thread Jason Wong
On Wednesday 17 July 2002 04:21, Andy wrote: sounds logical, but what happens with my other php version, where I need the flags? Nothing. It will stay as it is. will it still be working? Yes. And where is this standalone php version gonna be installed? ./configure --help to find out