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 fi
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:
Code (python):
from subprocess import call
import time
while True:
call(["php","cron.php"])
time.sleep(120)