CodeIgniter Forums
How do you run cronjobs - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How do you run cronjobs (/showthread.php?tid=43462)



How do you run cronjobs - El Forum - 07-12-2011

[eluser]esset[/eluser]
I have a question on how you do when running cronjobs w/ CI.

Since CI routes everything through the URL scheme (segments) which are public I was wondering how YOU do to best protect your cron related calls. For best security I would like to run cron related calls away from the public_html directory, so they aren't even accessable from the public domain.

Any tips&tricks; would be appreciated.

Thanks


How do you run cronjobs - El Forum - 07-12-2011

[eluser]CodeIgniteMe[/eluser]
Does making the visibility of the controller/method from Public to Protected/Private helps?
or use the rerouting feature.
Code:
$routes['cron/call'] = 'redirect/to/another/page';



How do you run cronjobs - El Forum - 07-13-2011

[eluser]esset[/eluser]
How do I access a private/protected controller? Doesn't all controller calls need to go through the url-segments


How do you run cronjobs - El Forum - 07-13-2011

[eluser]jmadsen[/eluser]
you might look at this:

http://codeigniter.com/wiki/Cron_job_bootstrapper/


How do you run cronjobs - El Forum - 07-13-2011

[eluser]esset[/eluser]
Thanks jmadsen. But I don't see how that's better, the user can still access the controller/method from the public domain by just browsing to it domain.com/controller/method.

Do you think there's a way to run private/protected controllers from a bootstrapper?

Right now I'm doing the same, and sending with a key (just a 32 characters hash) as a password to protect my controller from running if the key isn't valid. But it feels like a workaround somehow.

Thanks


How do you run cronjobs - El Forum - 07-13-2011

[eluser]Jaketoolson[/eluser]
Assuming your php.ini has
Code:
register_argc_argv On

Just pass an argv through the cron. If none is passed, the cron won't run regardless of it being run from the domain. If so, just throw a redirect?

cron /controller/method hashphrase

Code:
if ( ! isset($argv[1]) OR $argv[1] <> 'hashphrase')
{
  redirect(DEFAULT);
}



How do you run cronjobs - El Forum - 07-14-2011

[eluser]esset[/eluser]
Yeah, that's what I'm doing now. Just wanted to see if there was a better practice out there Smile

Thanks for the input guys.