Cron Jobs stopped working since 20/07/14 at 21:10

Status
Not open for further replies.

sicelx10

Member
Messages
126
Reaction score
2
Points
18
That date and hour was the last response from Cronjobs, any idea what is happening?
 

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
Code:
Bunch of log entries showing his cron jobs running

they're running perfectly.
 
Last edited by a moderator:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
If your jobs don't seem to be doing what you want, you might be getting errors, which you never see because you are throwing away all the output

(tail end of command):
Code:
 /home/cPanelUserName/public_html/****/****.php >/dev/null 2>&1

To see the errors that your script might be outputting, use logging

(tail end of command):
Code:
 /home/cPanelUserName/public_html/*****/*****.php >> /home/cPanelUserName/public_html/****/cron_log.txt  2>&1

at least long enough to see if you can find the error.
 
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Hmmmmmm....

Warning: imagecreatefromjpeg(imagenes/cielomorado.jpg): failed to open stream: No such file or directory in /home/cPanelUserName/public_html/******/******.php on line 6

Did you move/delete the file cielomorado.jpg ?
 
Last edited:

sicelx10

Member
Messages
126
Reaction score
2
Points
18
Hmmmmmm....

Warning: imagecreatefromjpeg(imagenes/cielomorado.jpg): failed to open stream: No such file or directory in /home/cPanelUserName/public_html/*****/*****.php on line 6

Did you move/delete the file cielomorado.jpg ?

.
Oh, that was the problem, thanks :D.
 
Last edited:
Status
Not open for further replies.
Top