[Help] Is there alternative in Cron Jobs ?

Hello there…
my webhost doesn’t have Cron Jobs feature…
is there any alternative php script in able to run my php script every minute ??
i have a website containing mafia game… it’s coded in php…
i tried to use

<META HTTP-EQUIV="Refresh" CONTENT="60; URL=http://test.com/run_minute.php">

but this will work only if the user is in the existing page where this code placed… :frowning:

i want it something like, the http://test.com/run_minute.php will refresh every minute… even thou the user is not on the page…

Thank you.
More power…

Alternative is “pseudo cron” - php script that is invoked whenever any page of website is requested. Obviously if there is few traffic to website, this won’t run every minute as you would expect.

Hi sir, thank you for your response…
i tried pseudo cron, it logs but it doesn’t execute the specific file…
is it correct syntax ?

[php]* * * * * cron_srun_minute.php[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service