Issues with installing on GoDaddy
-
My domain is hosted by GoDaddy and they installed Word Press.
This is what the configuration code currently looks like:
<?php
//Connect To Database
$hostname=’out0923310444676.db.4611885.hostedresource.com’;
$username=’out0923310444676′;
$password=’your password’;
$dbname=’out0923310444676′;
$usertable=’your_tablename’;
$yourfield = ‘your_field’;mysql_connect($hostname,$username, $password) OR DIE (‘Unable to connect to database! Please try again later.’);
mysql_select_db($dbname);$query = ‘SELECT * FROM $usertable’;
$result = mysql_query($query);
if($result) {
while($row = mysql_fetch_array($result)){
$name = $row[‘$yourfield’];
echo ‘Name: ‘.$name;
}
}
?>When I go to https://www.outcastgirls.com/blog i get the following error message:
“The page isn’t redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept cookies.
ALSO, I’M UNABLE TO LOGIN TO:
https://www.outcastgirls.com/blog/wp-admin/ – I used the same admin name and password I use to login to my WordPress account.I contacted GoDaddy but they are clueless as always. They asked me if my blog is redirected to the dedicated IP address or to my domain… when they are the ones who did the install, not me! How can I possibly know what they did. This is outrageous! So please, if you know a solution let me know because I can’t deal with the incompetent GoDaddy anymore.
- The topic ‘Issues with installing on GoDaddy’ is closed to new replies.