I want to run a cron job without using wget in CodeIgniter.
I am using it like this:
*/1 * * * * wget http://assurance.com/controller/function
It works successfully, but I do not want to use wget.
Is there any another way to run this CodeIgniter script?
You can try and use something like this:
But of course the
/usr/bin/phpshould be your path to the PHP binaries andpathToTheAppshould be the absolute path to your CI application.