Cronjob not working

Status
Not open for further replies.

danrulz98

New Member
Messages
16
Reaction score
0
Points
0
Hey,
I tried to set a cron to run every 30 minutes or so that would send me an email when a calender event came up.

cron said:
0,30 * * * * /home/danrulz/public_html/cgi-bin/email.pl

I guess my first question would be: are crons allowed?
 

Anna

I am just me
Staff member
Messages
11,748
Reaction score
581
Points
113
Yes, crons are allowed, as long as there's at least 5 minutes between each cron run.

I have no experience in perl scripting, but I'm sure there's someone else around here that does. It is likely that you need to have the path to perl included in the command (it is needed for executing php scripts in cron jobs).
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Code:
/usr/bin/perl  /home/danrulz/public_html/cgi-bin/email.pl

Try using this command.

Also, sometimes x10 mail is put into spam folders or bounced completely due to spamming by some accounts.
 
Status
Not open for further replies.
Top