Hello I have built a plugin which has a cron event running. The plugin works well, and has been tested. The script for the cron to run is here.
<crontab>
<jobs>
<customconfig>
<schedule>
<cron_expr>*/5 * * * *</cron_expr>
</schedule>
<run>
<model>customconfig/observer::cronEvent</model>
</run>
</customconfig>
</jobs>
</crontab>
I have tested the function it is linked to and it works. However the status in the cron_schedule table is pending. So i inserted the following line into cron.php
$isShellDisabled = true;
Still there was no apparent changes. However Now when I go on website.com/cron.php it will run the script and also run the cron jobs needed. The only issue is unless I manually go on website.com/cron.php it will not run the jobs in cron_schedule.
Any ideas what the fault is? How i can overcome it? I need to to be an automatic process.
PS. I have researched into this a lot and used them answers to get this far. however now i can not find any resources which will help me.