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

gurubob’s picture

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