facebook share stopped working on my site! do i need to switch over to like or is a temporary issue with facebook?
This is the code that I have that was working.
<li><a target="_blank" onclick="product_clicks('<?php echo $product['product_id']?>')" href="http://www.face开发者_开发知识库book.com/share.php? u=<?php echo str_replace(array("/",":"),array("%2F","%3A"),base_url()."product/details/".$product['product_id']."/".@$affiliate_id)?>"><img src="<?PHP echo base_url(); ?>images/facebook_icon.png" alt="" /></a></li>
It looks like the code is generating two http:// for the url when I attempt to switch.
I wonder what changed?!
Any suggestions ideas?
Don't have solution, but maybe this will help a bit: I saw duplicate http (e.g. http://http%3A%2F%2Fwww) when FB cannot resolve the link (e.g. site is down) or cannot access the page (e.g. page moved or removed) and tries to "fix it"
Example: http://www.facebook.com/sharer.php?u=http%3A%2F%2Fmyfakeserver%2Fno%2Fsuch%2Findex.php&t=This%20is%20not%20here
Did you try the link your code generates in browser, minimized to "u" parameter only (i.e. .../sharer.php?u=)?
精彩评论