By blavish on
I installed fbconnect module but now it has created urls containing "?fbc_channel=1" all over the entire site. Now the problem got bigger with google indexing those urls.
How to i remove those urls from the site or get google to stop scanning urls containing "?fbc_channel=1"?
Thanks.
Comments
no solution yet, but there
no solution yet, but there are threads about this #761630: ?fbc_channel=1#.. appended to url, #761630: ?fbc_channel=1#.. appended to url, #777672: FB_HiddenContainer iframe with a source of [current_page]?fbc_channel... is causing every page to load twice
Make sure you specify the
Make sure you specify the name of the receiver.htm in your call to FB.init, e.g.:
FB.init("your-api-code-goes-here", "/xd_receiver.htm");
... and that your /xd_receiver.htm exists.
I found that the extra call was fouling up things like adding items to a shopping cart as they'd get in there twice (our add to cart code is a GET request, not a POST, hence the trouble).
Credit to colenski at http://forum.developers.facebook.net/viewtopic.php?id=42867