Rob Avery IV
Rob Avery IV

Reputation: 3740

Why is my site blank?

Previously, I had my site working perfectly fine. But just recently, I changed my domain name in WHM. When I did, my site was blank. To be technical, here is the HTML code of the "blank site":

<!DOCTYPE html>
    <body style="padding:0; margin:0;">
        <iframe src="http://mcc.godaddy.com/park/pzgwLzMloTWbMKA2rKczYaOvrt==" style="visibility: visible;height: 2000px;" allowtransparency="true" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" width="100%">
        </iframe>
    </body>
</html>

When I go to this link server_ip_address/~username it comes up with my site fine and it works. Though, when I use my new domain name, it goes to the blank site.

The way in which I changed my domain name was going through WHM. I first went to Account Functions >> Modify an Account, and then clicked on the only account I had and clicked edit. On the edit page, I only changed the domain name to the new domain name. Everything else stayed the same. After that, I clicked Save, and everything seemed to be in working order from the WHM side. (BTW the username mentioned above is the same username account I edited)

How can I make my site visible for the new domain name?

Upvotes: 2

Views: 2990

Answers (2)

codehitman
codehitman

Reputation: 1188

Instead of just having a parked domain name, try adding a simple index.html:

<html>
  <head>
    <title>Site under construction</title>
  </head>
  <body>
    Site under construction.
  </body>
</html>

and then recheck if you can see the site.

Upvotes: 0

Soren
Soren

Reputation: 14698

You probably have an ad-blocker.

I get an error in my console

http://mcc.godaddy.com/park/pzgwLzMloTWbMKA2rKczYaOvrt==/fe/pzgwLzMloTWbMKA2rKczYaOvrt==?hg=0&nr=0 
Error:  net::ERR_BLOCKED_BY_CLIENT 

when running with an ad-blocker (and the screen is blank)

I see the site when I disable the adblocker

Upvotes: 2

Related Questions