facebook like button and Dreamweaver MX - facebook

Hi I have googled this problem and checked the answers in this forum but to no avail. I am using Dreamweaver MX to build my site. I have put the code for Facebook like button into my code as instructed (using the IFrame code) and I am seeing nothing on my page. Please advise

I did this on my .NET site & here is code for facebook like button without using an iFrame:
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like></fb:like>

Related

GWT application on Facebook

How can I publish my GWT application on Facebook?
EDITED:
Facebook requires from the application to have some FacebookSDK configuration in <body> tag on index.html page.
The GWT-generated index.html doesn't contain the <body> tag at all, (it has <bodies> instead o_O ).
How do I do that?
I tried to add these lines to the <bodies> tag and upload app to facebook, but when I click "next" on App QuickStart page I get "Something went wrong. We're working on getting it fixed as soon as we can." Facebook popup.
The app is generated by libgdx and works perfectly in browser on my own server.
Is there better way to publish GWT app?
There are some docs and question here and there, but it looks like they are related to old approach. Thanks!

Facebook Iframe link only open within the iframe

I feel like people have been having the opposite of this problem, I cannot figure how to have links open up outside of fb and not with the iframe.. I am posting material that rests in an FB app hosted by my server. The page has links to other sites, but when they open up they are still in the facebook iframe.
using basic:
<a href= "http...."><b>Blank.com</b>
looks like this
Click link...
I'm a rookie and any help would be great. Thanks
target="_blank" works if you have set up an app for the iframe.
Have you tried the target attribute?
example.com

Facebook's send and like button isn't working together

I'm a Wordpress plugin developer. I'm working with Facebook's like and send buttons.
I'm using this XFBML code :
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=119608038121612&xfbml=1"></script><fb:like href="http://jsfiddle.net" send="true" width="450" show_faces="true" font=""></fb:like>
There is send=true parameter but still showing only like button. You can check live example here. I got this code from Official Facebook Developer page. Also this code isn't working on Facebook's site, too.
So, do you have any idea ? How can we solve this problem ?
I just checked but it seems to work fine?
When i run your piece of code i see a 'like' and 'send' button and they both work.

How to add google docs forms to facebook fan page?

I'd like to place my google docs form(for newsletter sign-up) on my facebook page.
using this tutorial I was able to create an app, but no content showed http://www.hyperarts.com/blog/adding-iframe-application-to-facebook-fan-page/
So I wanted to know if there was another way of doing this, or anyway of doing this at all.
I had the same issue with using the iframe that google docs give you and using the url for the application tab on Facebook. The resulting facebook page is blank.
What I did to resolve this is whip up a simple html file that does the embedding from google and placed it on my (ssl encrypted) server. Then I used the url to that file as the application tab URL in my facebook app. Viola it worked.
Is Facebook not allowing embeds from docs.google.com? There's a simple workaround.
Here's the code from my html file on my server with the formkey mangled to protect privacy.
<html>
<body>
<iframe src="https://docs.google.com/spreadsheet/embeddedform?formkey=dGhOU" width="500" height="780" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</body>
</html>
There's a php class that i've been using. It provides functionality to capture form elements into a google doc.
That's a possibility but requires a larger learning curve if you're not familiar with PHP:
http://code.google.com/p/php-form-builder-class/

Can Facebook Live Stream Plugin be used on site outside of Facebook?

Does anyone out there have a working example of the Facebook live stream plugin
that exists on a NON facebook webpage (meaning one that isn't located in the facebook domain ie. a canvas app)?
Has anyone successfully managed to integrate the Facebook Live Stream plugin into their site?
I cannot successfully do this using the code given by facebook which is:
<div id="fb-root" ></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=MYAPPID&xfbml=1">
</script><fb:live-stream event_app_id="MYAPPID" width="400" xid=""
height="500" always_post_to_friends="false"></fb:live-stream>
Facebook has almost 0 documentation on this and whatever they do have is vague. I've searched forums regarding the issue but they are all full of people who can't get it to work and no decent solutions posted.
Thanks
The problem here was that I had "accept 3rd party cookies' turned off in my browser and the plugin needed to access these in order to work.