Reputation: 1438
So I've recently registered a domain at my local domain registration service and I've made a campaign with a facebook like button.
The problem is that when I like my own page (click the facebook like button), the like button partly fetch information from the registration service homepage (title and content but not the URL).
I've check that my domain has propagated correctly and I bought it and fixed the DNS server settings days ago.
This is my page: http://saloonen.nu
Upvotes: 1
Views: 595
Reputation: 43552
Strange... It works for me. I liked you page, and on my FB profile, it shows url correct... Or i dont understand your question?
Next thing, why do you have 2 xmlns:fb="..." attributes in you html element?
Use FB debuger for issues like yourown http://developers.facebook.com/tools/debug
Another thing, validate you html ;-) > http://validator.w3.org/ > too bad HTML isn't strict programming language ;-)
I found the problem, it is your content-type meta tag :
<meta http-equiv="Content-Type" content="text/html" charset="uft-8">
it should be :
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Upvotes: 3