Are There Any Cron Jobs Alternative?
Cron Jobs are closed on my server and server admin doesn't accept open it. Because , cron jobs slowing server etc. So, i need an alternative. I have to run a php file ( cron.php ) every 2 minutes. So, how can i do this ? DaJF Even though the question was posted a while ago, I just had the same problem but found a solution (based on Kissaki's answer , thanks!) and thought I'd post it here for anyone still looking for a possible solution. Prerequisites: SSH access Python Code (python): from subprocess import call import time while True: call(["php","cron.php"]) time.sleep(120) Depends on your