My server doesn't offer support for cron jobs. Is there still a way to run a script that's hosted on my server remotely?
Is this a Windows or Linux server ? If it is Linux, it should support Cron and if it is Windows, you probably need to include the task in the Scheduler.
If its Linux it should support cronjobs as eddie said, maybe cron daemon is down, try to restart it with: /etc/init.d/crond restart Otherwise you still can run your scripts remotely by calling them from another server with cron support, if its linux you can do: 3 6 * * * wget -q -O - http://domain.tld/script.php > /dev/null 2>&1 But it should work locally if its linux. Good luck.
Im not sure if its linux or windowns but Im running on a free server thats using cpanel. It seems that the cpanel option for cron jobs is not there.
Ah, Free Server. That probably explains it. Then there is no way you can use cron as it seems the web host disable that feature. You might need to upgrade to a paying plan to use it. If it is Cpanel, then it is most definitely a Linux server.