<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mukesh Chapagain&#039;s Blog &#187; Facebook</title>
	<atom:link href="http://blog.chapagain.com.np/category/facebook/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chapagain.com.np</link>
	<description>PHP Magento jQuery SQL Wordpress Joomla Programming &#38; Tutorial</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>W3C Validation: IFrame Error with XHTML 1.0 Strict Doctype</title>
		<link>http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/</link>
		<comments>http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 11:58:20 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[doctype]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=877</guid>
		<description><![CDATA[IFrames are not supported with XHTML 1.0 Strict Doctype. When you use IFrame and your doctype is XHTML 1.0 Strict, then you cannot pass the W3C Markup Validation test. You always get errors. The errors are like:- there is no attribute &#8220;src&#8221; there is no attribute &#8220;scrolling&#8221; there is no attribute &#8220;frameborder&#8221; there is no [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/magento-get-width-height-of-image-using-varien_image-class/' rel='bookmark' title='Permanent Link: Magento: Get width height of image using Varien_Image class'>Magento: Get width height of image using Varien_Image class</a></li>
<li><a href='http://blog.chapagain.com.np/octopus-pauls-prediction-spain-will-win-the-fifa-2010-worldcup/' rel='bookmark' title='Permanent Link: Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010'>Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010</a></li>
<li><a href='http://blog.chapagain.com.np/hardware-interrupt/' rel='bookmark' title='Permanent Link: Hardware Interrupt'>Hardware Interrupt</a></li>
<li><a href='http://blog.chapagain.com.np/magento-fatal-error-call-to-a-member-function-gettable-on-a-non-object/' rel='bookmark' title='Permanent Link: Magento: Fatal error: Call to a member function getTable() on a non-object'>Magento: Fatal error: Call to a member function getTable() on a non-object</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>IFrames</strong> are not supported with <strong>XHTML 1.0 Strict Doctype</strong>.</p>
<p>When you use IFrame and your doctype is XHTML 1.0 Strict, then you cannot pass the <strong>W3C Markup Validation</strong> test. You always get errors.</p>
<p>The errors are like:-<span id="more-877"></span></p>
<blockquote><p>there is no attribute &#8220;src&#8221;<br />
there is no attribute &#8220;scrolling&#8221;<br />
there is no attribute &#8220;frameborder&#8221;<br />
there is no attribute &#8220;height&#8221;<br />
there is no attribute &#8220;width&#8221;<br />
there is no attribute &#8220;allowtransparency&#8221;<br />
there is no attribute &#8220;title&#8221;<br />
element &#8220;iframe&#8221; undefined</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Solution</strong></span></p>
<p>Use <strong>object</strong> tag instead of <strong>iframe</strong>.</p>
<p><span style="text-decoration: underline;"><strong>Example</strong></span></p>
<p>Here is an iframe code for <strong>Facebook Like Box</strong>:-</p>
<pre class="brush: xml; title: ; notranslate">
&lt;iframe src=&quot;http://www.facebook.com/plugins/likebox.php?profile_id=62473189912&amp;width=300&amp;height=255&amp;connections=10&amp;stream=false&amp;header=false&amp;locale=en_US&quot;  scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border: medium none; overflow: hidden; width: 300px; height: 255px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
</pre>
<p>Using the above IFrame code in your website gives errors when you validate with W3C.</p>
<p>So, the solution is to use Object tag. You will not get the validation errors by using Object.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;object style=&quot;border: medium none; overflow: hidden; width: 300px; height: 255px;&quot;  data=&quot;http://www.facebook.com/plugins/likebox.php?id=62473189912&amp;amp;width=300&amp;amp;height=255&amp;amp;connections=10&amp;amp;header=false&quot;&gt;&lt;/object&gt;
</pre>
<p>It&#8217;s the same case with including <strong>Google Maps</strong> in websites.</p>
<p>Hope this helps. Thanks.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=877&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/magento-get-width-height-of-image-using-varien_image-class/' rel='bookmark' title='Permanent Link: Magento: Get width height of image using Varien_Image class'>Magento: Get width height of image using Varien_Image class</a></li>
<li><a href='http://blog.chapagain.com.np/octopus-pauls-prediction-spain-will-win-the-fifa-2010-worldcup/' rel='bookmark' title='Permanent Link: Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010'>Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010</a></li>
<li><a href='http://blog.chapagain.com.np/hardware-interrupt/' rel='bookmark' title='Permanent Link: Hardware Interrupt'>Hardware Interrupt</a></li>
<li><a href='http://blog.chapagain.com.np/magento-fatal-error-call-to-a-member-function-gettable-on-a-non-object/' rel='bookmark' title='Permanent Link: Magento: Fatal error: Call to a member function getTable() on a non-object'>Magento: Fatal error: Call to a member function getTable() on a non-object</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Twitter, Facebook, WordPress getting together</title>
		<link>http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/</link>
		<comments>http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 08:06:33 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=159</guid>
		<description><![CDATA[Twitter, Facebook and wordpress are all popular and fascinating. You publish an article in your wordpress blog. And you may want to publicize your article in twitter and facebook through status update separately. It would be very easy and time saving if I could publicize my blog article in twitter and facebook as soon as [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/introduction-of-facebook-connect/' rel='bookmark' title='Permanent Link: Introduction to facebook connect'>Introduction to facebook connect</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-plugin-quick-adsense-10/' rel='bookmark' title='Permanent Link: WordPress Plugin: Quick Adsense 1.0'>WordPress Plugin: Quick Adsense 1.0</a></li>
<li><a href='http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/' rel='bookmark' title='Permanent Link: Left or Right Align your image, adsense code or other advertisement in wordpress'>Left or Right Align your image, adsense code or other advertisement in wordpress</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-contact-form-7-quick-fix-spinning-arrow/' rel='bookmark' title='Permanent Link: WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed'>WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Twitter, Facebook and wordpress are all popular and fascinating. You publish an article in your wordpress blog. And you may want to publicize your article in twitter and facebook through status update separately. It would be very easy and time saving if I could publicize my blog article in twitter and facebook as soon as the article is published.</p>
<p>But this is possible and I have implemented it as well. You just need a wordpress plugin and facebook application.</p>
<p><span id="more-159"></span></p>
<p>WordPress plugin required: <a href="http://wordpress.org/extend/plugins/twittrup/"title="Twitterup"  target="_blank" rel="nofollow">Twitterup</a></p>
<blockquote><p><strong></strong>This plugin updates your twitter status with the latest post that you&#8217;ve made. It also has the option of including a link back to your post so people can easily click on it to view the post. The link provided in the tweet can be shorted via a service of your choice: tinyurl.com, is.gd, bit.ly or snurl.com</p></blockquote>
<p>Facebook Application required: <a href="http://www.facebook.com/apps/application.php?id=2231777543"title="Facebook application Twitter"  rel="nofollow"  target="_blank">Twitter</a></p>
<blockquote><p>Updates your Facebook status with Twitter status and updates your Twitter status through the application.</p></blockquote>
<p>The scenario:</p>
<p>1) You publish an article in your wordpress blog.</p>
<p>2) Your article is published as Twitter status through Twitterup wordpress plugin.</p>
<p>3) Your Facebook status is updated through the Twitter Facebook Application.</p>
<p>Finally, you combine Twitter, Facebook and WordPress blog at a time.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=159&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/introduction-of-facebook-connect/' rel='bookmark' title='Permanent Link: Introduction to facebook connect'>Introduction to facebook connect</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-plugin-quick-adsense-10/' rel='bookmark' title='Permanent Link: WordPress Plugin: Quick Adsense 1.0'>WordPress Plugin: Quick Adsense 1.0</a></li>
<li><a href='http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/' rel='bookmark' title='Permanent Link: Left or Right Align your image, adsense code or other advertisement in wordpress'>Left or Right Align your image, adsense code or other advertisement in wordpress</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-contact-form-7-quick-fix-spinning-arrow/' rel='bookmark' title='Permanent Link: WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed'>WordPress Contact Form 7: Quick Fix to spinning arrow displays forever &#038; no success/error message displayed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to facebook connect</title>
		<link>http://blog.chapagain.com.np/introduction-of-facebook-connect/</link>
		<comments>http://blog.chapagain.com.np/introduction-of-facebook-connect/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 06:35:56 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=87</guid>
		<description><![CDATA[Facebook Connect is the next iteration of Facebook Platform that allows users to &#8220;connect&#8221; their Facebook identity, friends and privacy to any site. This enables third party websites to implement and offer even more features of Facebook Platform off of Facebook – similar to features available to third party applications today on Facebook. Facebook has [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/an-introduction-to-rss/' rel='bookmark' title='Permanent Link: An introduction to RSS'>An introduction to RSS</a></li>
<li><a href='http://blog.chapagain.com.np/what-is-googles-opensocial/' rel='bookmark' title='Permanent Link: What is Google’s OpenSocial?'>What is Google’s OpenSocial?</a></li>
<li><a href='http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/' rel='bookmark' title='Permanent Link: Twitter, Facebook, WordPress getting together'>Twitter, Facebook, WordPress getting together</a></li>
<li><a href='http://blog.chapagain.com.np/an-introduction-to-pear/' rel='bookmark' title='Permanent Link: An Introduction to PEAR'>An Introduction to PEAR</a></li>
<li><a href='http://blog.chapagain.com.np/an-introduction-to-smarty-template-engine/' rel='bookmark' title='Permanent Link: An Introduction to Smarty Template Engine'>An Introduction to Smarty Template Engine</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Facebook Connect is the next iteration of Facebook Platform that allows users to &#8220;connect&#8221; their Facebook identity, friends and privacy to any site. This enables third party websites to implement and offer even more features of Facebook Platform off of Facebook – similar to features available to third party applications today on Facebook.</p>
<p>Facebook has lauched Facebook Connect with 24 partners initially. Those partners include CBS, CNET, CollegeHumor, Disney-ABC Television Group, Evite, Flock, Hulu, Kongregate, Loopt, Radar, Seesmic, Red Bull, Socialthing!, The Insider, StumbleUpon, Twitter, Uber, Vimeo, Amiando, Plaxo, and Xobni.</p>
<p><span id="more-87"></span></p>
<p>Features of Facebook connect:</p>
<p>1.<strong> One-click Login</strong>: Allow users to log in with their Facebook identity and allow your site to access their Facebook profile information.</p>
<p>2.<strong> Increased engagement</strong>: Leverage users&#8217; personal interests to show more relevant information and surface personalized content from friends such as reviews or comments.</p>
<p>3.<strong> New forms of distribution</strong>: Users can share content and actions taken on your site with friends back on Facebook through Feed, invites, and other social communication channels on Facebook.</p>
<p>4. <strong>Access to Facebook Platform</strong>: Use the same APIs that have allowed more than 670,000 developers to build more than 52,000 engaging applications for Facebook users since May 2007.</p>
<p>Early results have shown that sites using Facebook Connect for login have seen as many as 2 out of 3 new registrations come via Facebook Connect, and those users have about 50% more engagement on sites.</p>
<p><em>Sources:</em></p>
<p>http://developers.facebook.com/news.php?blog=1&#038;story=108</p>
<p>http://wiki.developers.facebook.com/index.php/Facebook_Connect</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=87&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/an-introduction-to-rss/' rel='bookmark' title='Permanent Link: An introduction to RSS'>An introduction to RSS</a></li>
<li><a href='http://blog.chapagain.com.np/what-is-googles-opensocial/' rel='bookmark' title='Permanent Link: What is Google’s OpenSocial?'>What is Google’s OpenSocial?</a></li>
<li><a href='http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/' rel='bookmark' title='Permanent Link: Twitter, Facebook, WordPress getting together'>Twitter, Facebook, WordPress getting together</a></li>
<li><a href='http://blog.chapagain.com.np/an-introduction-to-pear/' rel='bookmark' title='Permanent Link: An Introduction to PEAR'>An Introduction to PEAR</a></li>
<li><a href='http://blog.chapagain.com.np/an-introduction-to-smarty-template-engine/' rel='bookmark' title='Permanent Link: An Introduction to Smarty Template Engine'>An Introduction to Smarty Template Engine</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/introduction-of-facebook-connect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
