CodeIgniter Forums
Unable to run it (No input file...) - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Unable to run it (No input file...) (/showthread.php?tid=56319)



Unable to run it (No input file...) - El Forum - 12-10-2012

[eluser]Unknown[/eluser]
Hi!

I've installed it, but I always get "No input file specified." I've tried all the changes in htaccess and config.php you suggested, but I'm unable to run it.

I'm running apache2 and php5 under ubuntu server (OVH dedicated server)

Any suggestion to change in my php or apache configuration?

.htaccess (this is the current, but I've tried a lot):
Code:
DirectoryIndex index.php
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ index.php?/$1 [L]

config.php:
Code:
$config['uri_protocol'] = 'REQUEST_URI';
$config['index_page'] = '';

Thanks!

(And I'm sorry for my english)