My PHP Cron Job isn't Running

Status
Not open for further replies.

rtrackx1

New Member
Messages
6
Reaction score
0
Points
1
So I've tried to follow this:
https://x10hosting.com/wiki/Cron_job#Samples

I need to run a cron job for my PHP file every ten minutes on my free hosting account. Here are my two current cron jobs that don't work:

*/10 * * * * /usr/local/bin/php $HOME/rate.php?id=r
*/10 * * * * /usr/local/bin/php $HOME/rate.php?id=t
 

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
Here are my two current cron jobs that don't work
x10hosting's free-hosting accounts Cron jobs may not request external content - and they can have only one (1) Cron job execution per five (5) minutes

you are trying to run (start) two (2) at the same time
 

rtrackx1

New Member
Messages
6
Reaction score
0
Points
1
x10hosting's free-hosting accounts Cron jobs may not request external content - and they can have only one (1) Cron job execution per five (5) minutes

you are trying to run (start) two (2) at the same time
OK, thanks for replying. I will try a different hosting provider then, as I my PHP scripts get data from an API using post and write to a file.
 

Anna

I am just me
Staff member
Messages
11,750
Reaction score
581
Points
113
Our premium hosting does not come with the same limitation, this limit only applies to free hosting accounts.
 
Status
Not open for further replies.
Top