No input file specified. on goddady - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9) +--- Thread: No input file specified. on goddady (/showthread.php?tid=64104) |
No input file specified. on goddady - sameh weed - 01-14-2016 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/wiki/Godaddy-Installation-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 RE: No input file specified. on goddady - skunkbad - 01-14-2016 (01-14-2016, 06:25 PM)sameh weed Wrote: thank you What is the content of your .htaccess file in website root directory? RE: No input file specified. on goddady - sameh weed - 01-15-2016 (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] RE: No input file specified. on goddady - dave friend - 01-18-2016 Try changing the last line to RewriteRule ^(.*)$ index.php/$1 [L] RE: No input file specified. on goddady - skunkbad - 01-18-2016 (01-18-2016, 03:30 PM)dave friend Wrote: Try changing the last line to And this has worked for me in the past: Code: # SPECIAL GODADDY LINE ( UNCOMMENT IF GODADDY ) |