I am using Magento on a GoDaddy's shared hosting account, I have just configured it and able to see the home page, but not the other pages, What could be the issue? Anything in .htaccess
?
Current hosting path is
/home/content/42/9469242/html
I am using Magento on a GoDaddy's shared hosting account, I have just configured it and able to see the home page, but not the other pages, What could be the issue? Anything in .htaccess
?
Current hosting path is
/home/content/42/9469242/html
Please add this line of code to bottom of mod_rewrite section in .htaccess in your root directory .
This solved my issue with godaddy server.
From the Magento wiki :
BTW this is first result that comes up on Google for "magento no input file specified".
If you need PHP 5.3, GoDaddy only offers it with FastCGI (as of now) which is what causes this issue (no input file specified). To solve it and keep PHP 5.3 functionality, put the following three lines on the top of your
.htaccess
file:This basically handles PHP-CGI to PHP only (disabling FastCGI).
It's a common problem with godaddy hosting account. Try doing this
It should resolve the problem.