Welcome Guest, Not a member yet? Register   Sign In
No input file specified. ?
#1

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

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

[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.
#4

[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
#5

[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]




Theme © iAndrew 2016 - Forum software by © MyBB