Reputation: 196
I have tried almost everything that was there in the previous answers
Command: /usr/local/bin/php /home/username/public_html/temp/index.php/ controller function
This is the command I am using as my site is inside the temp folder of the particular domain
Earlier there were errors of 404
but now it shows
Could not open input file: /home/username/public_html/temp/index.php/
Any idea of the solution?
Upvotes: 1
Views: 895
Reputation: 534
just remove the slash at the end so it shows like this
/usr/local/bin/php /home/username/public_html/temp/index.php controller function
Upvotes: 1
Reputation: 19662
I cannot actually remember how CodeIgniter does its first step of routing - but I firmly believe it uses a rewrite rule to do it. As such, if you want to use codeIgniter's routing, you'll need to go through Apache/nginx. Sorry.
A good call would be wget -q http://whatever.your.site.is/index.php/controller/function
, though.
Upvotes: 2