Go-Daddy
Permalink
Hi all
I am pulling what hair I have left out. I know of the other threads for getting the re-writes to work on go-daddy.
They have recently (22Nov) upgraded their web servers to Apache 2.2 and I have a c5 site that just wont work no matter what I put in the .htaccess file.
I have deleted both the .htaccess file and the php5.ini file and still getting the "No input file specified." error message.
Can anyone help with this? Client is getting PO'd and I haven't done anything to the site in over a year. I know it sounds like a web server issue (they adamantly say it isn't) and I am at my wits end.
Thanks in advance.
Bill
I am pulling what hair I have left out. I know of the other threads for getting the re-writes to work on go-daddy.
They have recently (22Nov) upgraded their web servers to Apache 2.2 and I have a c5 site that just wont work no matter what I put in the .htaccess file.
I have deleted both the .htaccess file and the php5.ini file and still getting the "No input file specified." error message.
Can anyone help with this? Client is getting PO'd and I haven't done anything to the site in over a year. I know it sounds like a web server issue (they adamantly say it isn't) and I am at my wits end.
Thanks in advance.
Bill
Did you try the suggestion in the How To's section?
Mnkras thanks. Didn't even know it was there. All in the php5.ini file. Thank you.
htaccess should look like this:
On GD's shared hosting the php and php5 files really don't do much as GD restricts many of the PHP settings from being overwritten.
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [QSA,L] </IfModule>
On GD's shared hosting the php and php5 files really don't do much as GD restricts many of the PHP settings from being overwritten.