RE: [PHP] Cronjob

2002-09-25 Thread John Holmes
Use lynx or wget to call your web page. lynx --dump http://www.domain.com/my_cron_page.php ---John Holmes... -Original Message- From: Daren Cotter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 12:36 PM To: PHP General Mailing List Subject: [PHP] Cronjob I have

Re: [PHP] Cronjob security

2002-06-04 Thread Analysis Solutions
On Tue, Jun 04, 2002 at 09:51:18AM -0400, SP wrote: Or you could do this to make the page only accessable to you. http://www.mysite.com/cronpage.php?secretpassword=iud88383 You could also use .htaccess or checking $_SERVER['REMOTE_ADDR'] to see that the request is coming from your server. Of

Re: [PHP] Cronjob security

2002-06-04 Thread Edgard Berendsen
If you go to the URL I receive a mail telling me if anybody of my DB has birthday. Nothing special. Thanks! Analysis Solutions [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Sire: ... but I've read it is un-secure. Is this true? Depends. What happens if

RE: [PHP] Cronjob security

2002-06-04 Thread John Holmes
Berendsen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 2:14 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Cronjob security If you go to the URL I receive a mail telling me if anybody of my DB has birthday. Nothing special. Thanks! Analysis Solutions [EMAIL PROTECTED] wrote

RE: [PHP] Cronjob security

2002-06-04 Thread SP
Or you could do this to make the page only accessable to you. http://www.mysite.com/cronpage.php?secretpassword= iud88383 -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED]] Sent: June 4, 2002 4:45 AM To: 'Edgard Berendsen'; [EMAIL PROTECTED] Subject: RE: [PHP] Cronjob

Re: [PHP] Cronjob security

2002-06-03 Thread Analysis Solutions
Sire: On Mon, Jun 03, 2002 at 11:47:50PM -0400, Edgard Berendsen wrote: I'm using the following cronjob in my remote server: MAILTO=[EMAIL PROTECTED] 0 0 * * * wget -Ofile.log -q -T10 http://www.domain.com/script.php /dev/null This is the only way I can run a cronjob successfully... If