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

thank you
I have to raise my script files
To host goddady but got a problem
No input file specified.
What to solve this problem ?
You follow the instructions on the following page :
https://github.com/bcit-ci/CodeIgniter/w...ation-Tips
The following error appears :
Not Found

The requested URL /index.php was not found on this server.


Is there a solution I can install the script on hosting
thank you
Reply
#2

(01-14-2016, 06:25 PM)sameh weed Wrote: thank you
I have to raise my script files
To host goddady but got a problem
No input file specified.
What to solve this problem ?
You follow the instructions on the following page :
https://github.com/bcit-ci/CodeIgniter/w...ation-Tips
The following error appears :
Not Found

The requested URL /index.php was not found on this server.


Is there a solution I can install the script on hosting
thank you

What is the content of your .htaccess file in website root directory?
Reply
#3

(01-14-2016, 08:54 PM)skunkbad Wrote: What is the content of your .htaccess file in website root directory?

thank you

the content of .htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
Reply
#4

Try changing the last line to

RewriteRule ^(.*)$ index.php/$1 [L]
Reply
#5

(01-18-2016, 03:30 PM)dave friend Wrote: Try changing the last line to

RewriteRule ^(.*)$ index.php/$1 [L]

And this has worked for me in the past:


Code:
# SPECIAL GODADDY LINE ( UNCOMMENT IF GODADDY )
RewriteRule ^(.*)$ /index.php?/$1 [L]
Reply




Theme © iAndrew 2016 - Forum software by © MyBB