CodeIgniter Forums
No input file specified. ? - 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: No input file specified. ? (/showthread.php?tid=26729)



No input file specified. ? - El Forum - 01-21-2010

[eluser]CoperNikus[/eluser]
what does the message "No input file specified. "
means?


No input file specified. ? - El Forum - 01-22-2010

[eluser]flaky[/eluser]
http://codeigniter.com/wiki/How_to_ask_a_good_question/


No input file specified. ? - El Forum - 01-22-2010

[eluser]molodoy[/eluser]
[quote author="CoperNikus" date="1264137978"]what does the message "No input file specified. "
means?[/quote]
It means, that your fastcgi config is not correct.


No input file specified. ? - El Forum - 01-22-2010

[eluser]CoperNikus[/eluser]
Well I looked around the forums and faq, and everybody say you need to add a ? to you .htaccess,
as following:
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php[b]?[/b]/$1 [L]
But when I do, Instead of redirecting everything to the index file located at my
root/ci/index.php
it redirects it to my root/index.php!

Help :O


No input file specified. ? - El Forum - 01-22-2010

[eluser]rogierb[/eluser]
If you installed CI in directory under your root, you need to rewrite your base url
Code:
RewriteEngine on
RewriteBase /ci/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]