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

[eluser]Sherz[/eluser]
Hey!

I have recently re-installed code igniter (after seeing it, getting scared of the complexity and hammering the delete button before running away to hide) and have now got to grips with it, sort of, I have installed CI to my site and the welcome page works fine and is very pretty, it may confuse a random visitor but will do for now. I have followed one of the video tutorials and I have created a simple blog.php page and that has been uploaded. Even after hammering away with settings and searching through post upon post I could not find a way to resolve this issue.

www.mysite.com/index.php --- Shows welcome page.
www.mysite.com/index.php/blog -- Shows "No input file specified".

I have yet to contact godaddy but I have searched through there knowledge base I gained zero knowledge!! I am really peeved about this and I hope to God that someone knows a solution.
#2

[eluser]Michael Wales[/eluser]
Try the different url_protocol options in config.php.
#3

[eluser]Sherz[/eluser]
I have tryed every setting of url_protocol including AUTO. No luck =(.
#4

[eluser]AtlantixMedia[/eluser]
I had the same issue too. I put the following in htaccess and fixed it

Code:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>
#5

[eluser]Sherz[/eluser]
Sorted thanks!
#6

[eluser]axecutioner[/eluser]
Where did you put your .htaccess? Site root? I am having the exact same problem (hosting is with godaddy) but adding it did not help me.

[EDIT: changing to PHP5.1 and uri protocol REQUEST_URI seems to have fixed it.]
#7

[eluser]AtlantixMedia[/eluser]
yes it's in the site root
#8

[eluser]life_time_learner[/eluser]
I didn't help me either.
#9

[eluser]pranky[/eluser]
Hello Folks,

input file not specified:

I am submitting a link which will explain you what exactly you have to do.

While doing just remember that your index.php? should contain ? mark

<a href="http://pankajdangi.com/2010/04/no-input-file-specified-codeigniter">Check this link</a>



Thanks
Pankaj
#10

[eluser]msk_mx[/eluser]
Hi, in Goddady this .htaccess works for me
Code:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [QSA,L]
</IfModule>

The small change is in index.php?$1 [QSA,L]

I hope someone will help this.
MASC




Theme © iAndrew 2016 - Forum software by © MyBB