CodeIgniter Forums
request in CLI missing URI - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: request in CLI missing URI (/showthread.php?tid=64040)



request in CLI missing URI - tomasoma - 01-06-2016

hi,
i searched a lot and i'm surprised not to find so i dare request some help here...

for my crons i used to do
Code:
php5.5 -q $HOME/dir/www/index.php contact relance_auto
where contact is the controller and relance_auto is the method as given in documentation.
it worked fine with CI 2.2

but the same doesn't work with CI 3.0.3 and in the log i have :
Code:
No URI present. Default controller set.

i feel dumb loosing a lot of time on this problem as i am obviously alone to have it.
has anyone something to suggest ?

(please excuse my bad english)


RE: request in CLI missing URI - Narf - 01-06-2016

Is "php5.5" the php-cli binary? You may be using another SAPI.


RE: request in CLI missing URI - tomasoma - 01-07-2016

(01-06-2016, 12:11 PM)Narf Wrote: Is "php5.5" the php-cli binary? You may be using another SAPI.

you are right "php5.5" is not the php-cli binary, i have to call "php5.5-cli" and it works with CI 3.0.3.
thank you very much, I'm sorry disturb you.
problem solved.