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.

My like box is not showing up with the code generated. I have read through the fixes here and some refer to changing "profile id" to just "id" but there doesn't seam to be any such code in my generated code - also fixed all ampersands (I think)... This is what I have that does not work. How should I change it? Thanks! I get a 404 error with this code:

<iframe
src="http//www.facebook.com/plugins/likebox.php?href=http://www.facebook
.com/pages/Bluedawg-Design/70870858258;width=450;
height=590;colorscheme=light;show_faces=true;border_color;stream=
true;header=true" scrolling="no" frameborder="0" style="border:none;
overflow:hidden; width:450px; height:590px;"
allowTransparency="true"></iframe> 
share|improve this question

3 Answers

You wiped too much of needed parts, ampersands are important!

And you're missing : after http which leads to problem.

This is a working version (do not remove parts of next code before trying it as is)

<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FBluedawg-Design%2F70870858258&amp;width=450&amp;height=590&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:590px;" allowTransparency="true"></iframe>

This code works perfectly served by web server but will not work if opened from local machine (not served over HTTP or HTTPS) in later case just put http: before //www.facebook.com

share|improve this answer
LOL, Thank You. Unfortunately still not working: I get: Firefox can't find the file at /plugins/likebox.php?href=facebook.com/pages/Bluedawg-Design/…. – Mary Murphy Jan 2 '12 at 17:52
This is the page I am linking to: facebook.com/pages/Bluedawg-Design/70870858258 – Mary Murphy Jan 2 '12 at 17:57
Did you removed http%3A%2F%2Fwww. part from the start of href? – Juicy Scripter Jan 2 '12 at 18:00
I see a lot of &amp in the code you posted... should I remove that? – Mary Murphy Jan 2 '12 at 18:00
No I didn't remove http%3A%2F%2Fwww. Should I – Mary Murphy Jan 2 '12 at 18:04
show 5 more comments

just change all

http:// 

to

https://

That solved the issue I also wrote a post about it on http://nerudo.mregi.com/social-widgets-twitter-flickr-and-fb-not-showing

share|improve this answer

In the src= of the iframe try using ?href=http%3A%2F%2Fwww.facebook%0A.com%2Fpages%2FBluedawg-Design%2F70870858258 rather than the un-encoded version.

So now the whole thing will look like:

<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FBluedawg-Design%2F70870858258&amp;width=292&amp;height=590&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=true&amp;appId=127211380649475" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:590px;" allowTransparency="true"></iframe>
share|improve this answer
OK I did that, Now it is pulling in my regular web page not the URL we have indicated See: bluedawg.com scroll down I have inserted the facebook Like box in bottom right. – Mary Murphy Jan 2 '12 at 17:40
Sorry, my mistake. See my edited comment above. – DMCS Jan 2 '12 at 17:54
Unfortunatly, still not working. I get the error: Firefox can't find the file at /plugins/likebox.php?href=facebook.com/pages/Bluedawg-Design/…. – Mary Murphy Jan 2 '12 at 18:36
At bluedawg.com, I see the like box just fine using Firefox browser on windows. – DMCS Jan 2 '12 at 19:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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