Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using php code to get the Like button on the screen.

while($rec = mysql_fetch_array( $result, MYSQL_ASSOC ))
{       
   echo '<div class="fb-like" data-href="http://example.com/view.php?pic_id='.$rec['IMAGE'].'" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false" data-font="arial"></div>';
}

Now this is giving me 50 LIKE BUTTON on one page just as I need .The Problem is that it loads too slow , Is there any way to make load it fast ?

What i feel is when facebook FB.init is called then these Button's get rendered. So there are 50 request going from my server and getting

50 like button CSS + 50 Images of same button.

Is there a way to load it fast ?

share|improve this question
Did u check out this question? stackoverflow.com/questions/9136254/… – eric.itzhak May 28 '12 at 13:15

closed as not a real question by hakre, markus, webarto, CharlesB, Graviton May 29 '12 at 4:28

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You can delay adding the button until the page has loaded. Put in a 'placeholder' div for each button so that the page isn't resized, and then once the page has loaded, add all the Like buttons using Javascript.

Check also that you have indexed your MySQL table properly - if the delay is in retrieving the data in the first place then look at optimising that first.

share|improve this answer

There is no way to speed this up. Each Like button is a iframe that calls the relevant files from Facebook, so each request makes multiple calls to Facebook to retrieve the button, CSS, images etc. The only way to speed this up is to use less Like buttons on the page or put the Like buttons on the content page itself (as opposed to the list).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.