Re: [PHP] cron not allowed

2001-11-13 Thread Andrzej Roszkowski

On Tue, 13 Nov 2001, Caspar Kennerdale wrote:

 I have a php script I'd like to run at regular intervals, but my isp will
 not set a cron job for it but will for a perl script

 Is there anyway round tis, or does anyone one know of a perl script that
 might then execute the php script if I can get that to be automated?

 thanks

at spooler with shell script that sets up new job at exit ;)


Code reviews are like sex, just anyone can do it, but skill and training
can make you a lot better at it. - LJ
Thomas


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] cron not allowed

2001-11-13 Thread Jack Dempsey

how did you plan on running php from cron? however you do that you could run
a perl script that just makes a system call and does the same thing

-Original Message-
From: Caspar Kennerdale [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 13, 2001 9:04 AM
To: Php-General
Subject: [PHP] cron not allowed


I have a php script I'd like to run at regular intervals, but my isp will
not set a cron job for it but will for a perl script

Is there anyway round tis, or does anyone one know of a perl script that
might then execute the php script if I can get that to be automated?

thanks



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] cron not allowed

2001-11-13 Thread Nick Winfield

On Tue, 13 Nov 2001, Jack Dempsey wrote:

 how did you plan on running php from cron? however you do that you could run
 a perl script that just makes a system call and does the same thing

[blah.php]
#!/path/to/php -q

do_stuff();

[/blah.php]

Then just add a record to user crontab, running the script whenever and
writing any output to either a log file or /dev/null - a matter of taste,
I believe. :)

You have to ./configure PHP without Apache support though for it to build
a PHP binary.

Cheers,

Nick Winfield.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] cron not allowed

2001-11-13 Thread Jon Haworth

 how did you plan on running php from cron? 

Well, this works for me:

0 3 * * * lynx -dump http://mysite.com/mypage.php  /dev/null

HTH
Jon


**
'The information included in this Email is of a confidential nature and is 
intended only for the addressee. If you are not the intended addressee, 
any disclosure, copying or distribution by you is prohibited and may be 
unlawful. Disclosure to any party other than the addressee, whether 
inadvertent or otherwise is not intended to waive privilege or confidentiality'

**

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] cron not allowed

2001-11-13 Thread Jack Dempsey

thanks jonwas more of a 'how are you going to' rather than 'how is it
possible' :-)
either way, from lynx or from php being a cgi a simple shell script or perl
script should be able to make the appropriate call...

jack

-Original Message-
From: Jon Haworth [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 13, 2001 9:29 AM
To: 'Jack Dempsey'; [EMAIL PROTECTED]
Subject: RE: [PHP] cron not allowed


 how did you plan on running php from cron?

Well, this works for me:

0 3 * * * lynx -dump http://mysite.com/mypage.php  /dev/null

HTH
Jon


**
'The information included in this Email is of a confidential nature and is
intended only for the addressee. If you are not the intended addressee,
any disclosure, copying or distribution by you is prohibited and may be
unlawful. Disclosure to any party other than the addressee, whether
inadvertent or otherwise is not intended to waive privilege or
confidentiality'

**

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] cron not allowed

2001-11-13 Thread Caspar Kennerdale


thanks for the ideas


-Original Message-
From: Jack Dempsey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 13, 2001 15:23
To: Jon Haworth; [EMAIL PROTECTED]
Subject: RE: [PHP] cron not allowed


thanks jonwas more of a 'how are you going to' rather than 'how is it
possible' :-)
either way, from lynx or from php being a cgi a simple shell script or perl
script should be able to make the appropriate call...

jack

-Original Message-
From: Jon Haworth [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 13, 2001 9:29 AM
To: 'Jack Dempsey'; [EMAIL PROTECTED]
Subject: RE: [PHP] cron not allowed


 how did you plan on running php from cron?

Well, this works for me:

0 3 * * * lynx -dump http://mysite.com/mypage.php  /dev/null

HTH
Jon


**
'The information included in this Email is of a confidential nature and is
intended only for the addressee. If you are not the intended addressee,
any disclosure, copying or distribution by you is prohibited and may be
unlawful. Disclosure to any party other than the addressee, whether
inadvertent or otherwise is not intended to waive privilege or
confidentiality'

**

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]