Welcome Guest, Not a member yet? Register   Sign In
Godaddy Installation Tips
#1

[eluser]conekt[/eluser]
Thank you to everyone who's posted on Godaddy installation issues.

Having just struggled with this issue myself, this seems to be the shortest path to proper performance on Godaddy. This is entirely based on other people's posts but, I didn't really see this all in one place so I thought I do just that.

In config.php:
Code:
$config['index_page'] = "index.php?";
$config['uri_protocol'] = "QUERY_STRING";

You should now be able to access everything as such:
Code:
http://yourdomain.com/index.php?controller/action/etc

Once you get to a point where you want to hide the 'index.php?' paste this into your .htaccess file:

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

You should now be able to access everything as such:
Code:
http://yourdomain.com/controller/action/etc

Hope this is helpful.


Messages In This Thread
Godaddy Installation Tips - by El Forum - 09-14-2007, 04:49 AM
Godaddy Installation Tips - by El Forum - 09-14-2007, 08:11 AM
Godaddy Installation Tips - by El Forum - 09-14-2007, 08:20 AM
Godaddy Installation Tips - by El Forum - 12-08-2007, 02:08 PM
Godaddy Installation Tips - by El Forum - 12-08-2007, 03:25 PM
Godaddy Installation Tips - by El Forum - 12-08-2007, 05:49 PM
Godaddy Installation Tips - by El Forum - 12-08-2007, 06:17 PM
Godaddy Installation Tips - by El Forum - 03-30-2008, 05:16 PM
Godaddy Installation Tips - by El Forum - 03-31-2008, 04:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB