I was fixing a Facebook comment plugin for WordPress to solve this:
Warning: [link] is unreachable.
After debugging I found [og:link] appearing several times, so I eliminated it. But now I am still facing the unreachable problem. Somebody told me it has something to do with Open Graph in headers. How do I fix this problem?
Pass your URL through the debugger tool at http://developers.facebook.com/tools/debug and fix any errors it gives.
This appears to be a known issue, but without a resolution.
Related
It might be better suited for the bug page, I am trying my luck there too. But there's must be something I am missing.
After installing github extensions, I tried to log in to github in vscodium (similar but not like described here: https://github.com/VSCodium/vscodium/issues/401 ), and after I put down my auth token it just does nothing. I saw some related bugs that said an error occurred, but for me it just ends there, and I can't find where it says what error happened. Even if it is a bug I think there is some setting or something that I can't find to show me what happened, and I would appreciate a point in the right direction.
I would appreciate your help
The whole site looks like this for me. I can't find any answers online as to why...
It is probably your internet connection is slow.
Trying opening the website in some other browser and see if you still face the same issue.
Setting the document.domain in a Facebook app, but not in the channel file seemed to not cause issues before the July 2012 code cleanup. But after, cross-domain security errors will be thrown.
Not really a question, but when I searched the issue, I didn't find anything related and thought it important to make a note of it in case someone else has this problem too.
I have GWT application. i am using IE8. when i try to access the page in hosted mode, i am getting below error. how to resolve it?
Thanks!
IE6, IE7, IE8 has many bugs.
Try to compile your project in "Pretty" or "Detailed" javascript and look line where is error.
Then try to find in google this method. If you're lucky, you find solution.
It has helped me several times. But sometimes the errors GWT in IE are not resolved.
It works nicely in FF and Chrome, but in Opera I get timeout error. The loading animation is going and going on but nothing appears. Could you please help me? My deadline comes tommorow :-(
Pastebin entire source code: http://pastebin.com/yjFWwqPv
Facebook connect is broken in Opera due to the problem I explained here:
http://my.opera.com/hallvors/blog/2010/07/20/postmessage-s-targetorigin-and-security
I don't think there is anything you can do about it except waiting for either Opera or Facebook to fix it. Due to the nature of the problem is pretty hard to work around - unless, I guess, you make a local copy of http://connect.facebook.net/en_US/all.js with a bugfix in it. That fix should be as simple as finding this code:
FB.XD._origin=(window.location.protocol+'//'+window.location.host+'/'+FB.guid())
and remove the '+FB.guid()' part. While I know that this will avoid the Opera security policy violation, I'm not sure if this workaround will cause the script to fail in other ways - untested.