<?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>The Webmaster's Café &#187; Blogging</title>
	<atom:link href="http://www.thewebmasterscafe.net/category/blogging/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thewebmasterscafe.net</link>
	<description>Resources For Webmasters, Web Developers and Web Designers</description>
	<lastBuildDate>Wed, 20 Aug 2008 00:02:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Embed Flash Videos In A WordPress Blog</title>
		<link>http://www.thewebmasterscafe.net/blogging/wordpress-flash.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/wordpress-flash.html#comments</comments>
		<pubDate>Thu, 28 Feb 2008 14:29:58 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[flash video]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/wordpress-flash.html</guid>
		<description><![CDATA[Lately I wanted to embed a Flash video in a blog post. Unfortunately, the WordPress editor seems to break the HTML code unless you disable the visual editor. So for those who want to add Flash animations to their post, here&#8217;s how to do it: 1. Download the Kimili Flash Embed plugin for WordPress. 2. [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I wanted to embed a Flash video in a blog post. Unfortunately, the WordPress editor seems to break the HTML code unless you disable the visual editor.</p>
<p>So for those who want to add Flash animations to their post, here&#8217;s how to do it:</p>
<p>1. Download the <a target="_blank" href="http://kimili.com/plugins/kml_flashembed">Kimili Flash Embed</a> plugin for WordPress.</p>
<p>2. Upload your Flash file (.SWF) manually to your web server using an FTP client like <a target="_blank" href="http://filezilla-project.org/">Filezilla</a>.</p>
<p>3. Insert the following code in your post:</p>
<blockquote><p><code>[kml_flashembed movie="http://yourdomain.com/pathto/video.swf" height="250" width="400" /]</code>.</p></blockquote>
<p>Of course you can set the dimension to whatever suits your needs. And while the full URL to your SWF file isn&#8217;t necessary, it&#8217;s better to include it otherwise people who read your posts through an RSS reader won&#8217;t be able to see your Flash movie.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/wordpress-flash.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Dynamically Add Pages To Your WordPress Sitemap</title>
		<link>http://www.thewebmasterscafe.net/seo/add-dynamic-entries-to-wordpress-sitemap.html</link>
		<comments>http://www.thewebmasterscafe.net/seo/add-dynamic-entries-to-wordpress-sitemap.html#comments</comments>
		<pubDate>Sun, 17 Feb 2008 01:41:30 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/seo/add-dynamic-entries-to-wordpress-sitemap.html</guid>
		<description><![CDATA[If you are using the sitemap plugin for WordPress from Arne Brachhold, you may have the need to add additional pages which are not generated by your blog. If you&#8217;ve got a handful of pages, the sitemap plugin gives your the possibility to add them manually through the option page. There is also an option [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using the sitemap plugin for WordPress from <a href="http://www.arnebrachhold.de/" title="Visit author homepage">Arne Brachhold</a>, you may have the need to add additional pages which are not generated by your blog. If you&#8217;ve got a handful of pages, the sitemap plugin gives your the possibility to add them manually through the option page. There is also an option that allows the plugin to build the sitemap based on requests sent to your web server.</p>
<p>This may be useful but if you need a little more control, here&#8217;s how to dynamically add pages to your WordPress sitemap:</p>
<p>1. Edit /wp-content/plugins/google-sitemap-generator/sitemap.php</p>
<p>2. Find the line that reads:</p>
<blockquote><p><span style="font-family: courier new,courier"><span style="font-family: courier new,courier">$this-&gt;AddElement(new GoogleSitemapGeneratorXmlEntry(&#8220;&lt;/urlset&gt;&#8221;));</span></span></p></blockquote>
<p>3. Just before this line, insert:</p>
<blockquote><p><span style="font-family: courier new,courier"><span style="font-family: courier new,courier">include(&#8220;mysitemap.php&#8221;);</span></span></p></blockquote>
<p>4. Create a new empty file into <strong>/wp-content/plugins/google-sitemap-generator/</strong> and save it as <strong>mysitemap.php</strong>.</p>
<p>5. Insert the following content into your newly created file:</p>
<p class="divSourceCode"><span style="font-family: courier new,courier">&lt;?php</span></p>
<p class="divSourceCode"><span style="font-family: courier new,courier">$this-&gt;AddElement(new GoogleSitemapGeneratorXmlEntry(&#8221; &lt;url&gt;&#8221;));</span></p>
<p><span style="color: #ff0000; font-family: courier new,courier">$this-&gt;AddElement(new GoogleSitemapGeneratorXmlEntry(&#8220;\n &lt;loc&gt;http://www.yourdomain.com/document.html&lt;/loc&gt;&#8221;));</span></p>
<p><span style="color: #ff0000; font-family: courier new,courier">$this-&gt;AddElement(new GoogleSitemapGeneratorXmlEntry(&#8220;\n &lt;changefreq&gt;weekly&lt;/changefreq&gt;&#8221;));</span></p>
<p><span style="color: #ff0000; font-family: courier new,courier">$this-&gt;AddElement(new GoogleSitemapGeneratorXmlEntry(&#8220;\n &lt;priority&gt;0.5&lt;/priority&gt;&#8221;));</span></p>
<p><span style="font-family: courier new,courier">$this-&gt;AddElement(new GoogleSitemapGeneratorXmlEntry(&#8220;\n &lt;/url&gt;\n&#8221;));</span></p>
<p><span style="font-family: courier new,courier">?&gt;</span></p>
<p>6. Once your done, upload sitemap.php and mysitemap.php to your web server.</p>
<p>Of course the iteration process has to occur between the &lt;url&gt; and &lt;/url&gt; entries (<em>the part identified in red</em>). You can dynamically add pages using an SQL query for example.</p>
<p>The <em>sitemap.xml</em> and <em>sitemap.xml.gz</em> files will automatically be updated with your dynamic entries next time your rebuild your sitemap.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/seo/add-dynamic-entries-to-wordpress-sitemap.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make Video Tutorials For Your Website</title>
		<link>http://www.thewebmasterscafe.net/blogging/create-videos-for-your-blog.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/create-videos-for-your-blog.html#comments</comments>
		<pubDate>Mon, 03 Dec 2007 04:00:27 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/create-videos-for-your-blog.html</guid>
		<description><![CDATA[If a picture is worth a thousand words then a video is worth millions of words. Sometimes it easier to get your idea to your readers on video than with words. Making a video does not only benefit your visitors, it benefits your website as well: publishing your video through a high-traffic site like YouTube.com can bring loads [...]]]></description>
			<content:encoded><![CDATA[<p>If a picture is worth a thousand words then a video is worth millions of words. Sometimes it easier to get your idea to your readers on video than with words.</p>
<p>Making a video does not only benefit your visitors, it benefits your website as well: publishing your video through a high-traffic site like YouTube.com can bring loads of traffic to yours.</p>
<p>This tutorial will show you how to create a video for your website / blog.</p>
<h2>Get A Screen Capture Software</h2>
<p>Techsmith makes their available screen capture software, Camtasia, available for free at <a target="_blank" href="http://download.techsmith.com/camtasiastudio/enu/312/camtasiaf.exe">http://download.techsmith.com/camtasiastudio/enu/312/camtasiaf.exe</a>. Now before you go through the installation, get your free registration key here: <a target="_blank" href="http://www.techsmith.com/camtasia/pcpls.asp">http://www.techsmith.com/camtasia/pcpls.asp</a>.</p>
<h2>Record Your Video Tutorial</h2>
<p>Launch Camtasia Recorder (<em>Start =&gt; Programs =&gt; Camtasia Studio 3 =&gt; Applications =&gt; Camtasia Recorder</em>) and click on <strong>Capture =&gt; Window</strong>. Select the window you wish to record and hit the F9 key.</p>
<p>Camtasia is now recording the active window. When you&#8217;re done, hit F9 again. From the Camtasia Recorder menu, click on <strong>Capture =&gt; Stop</strong>.</p>
<p>At this point, there are some nice features you can use such as adding voice narration, transition effects and captions. From the Camtasia Studio window, click on <strong>Produce video as&#8230;</strong> from the left menu.</p>
<blockquote><p><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/12/producevideo.jpg" alt="producevideo.jpg" /></p></blockquote>
<p>From the <em>Production Wizard</em> window, select to export your video as an .AVI file. Click &#8220;Next&#8221; until you get to specify the video size. If you want to publish your video on YouTube, select 640&#215;480:</p>
<p style="text-align: center"><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/12/videosize.jpg" alt="videosize.jpg" /></p>
<p>You can also include a watermark with let&#8217;s say, the name of your website. This watermark has to be a .GIF file with a transparent background. Alright, finish on with Production Wizard by hitting next and saving the movie to your hard drive.</p>
<p>A 15 seconds movie at 640&#215;480 will take about 1 Mb of disk space.</p>
<h2>Getting Your Video On YouTube</h2>
<p>Now it&#8217;s time to get your video online. Visit <a target="_blank" href="http://youtube.com/">YouTube.com</a> and sign up for a new account if you haven&#8217;t already done so. You can also use your Google account. Once logged in, click on <strong>My Account</strong> and then the <strong>Upload videos</strong> button.</p>
<h2>Broadcast Your Video On Your Website</h2>
<p>When you&#8217;re done uploading your video on YouTube, a text box will appear containing the HTML code to embed in your webpage or blog post.</p>
<p>That&#8217;s it, you&#8217;re done! You&#8217;ve got a nice video tutorial on your website.</p>
<p><em>Don&#8217;t forget to use relevant keywords on YouTube as this can drive traffic to your website.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/create-videos-for-your-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s An RSS Feed And What Can You Do With It?</title>
		<link>http://www.thewebmasterscafe.net/blogging/what-is-an-rss-feed.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/what-is-an-rss-feed.html#comments</comments>
		<pubDate>Thu, 29 Nov 2007 02:06:00 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/what-is-an-rss-feed.html</guid>
		<description><![CDATA[Perhaps you&#8217;ve heard about RSS or you&#8217;ve seen the orange icon  on many websites, blogs or forums. If you haven&#8217;t taken advantage of RSS feeds possibilities yet, perhaps it&#8217;s time you learn a little more about it. RSS means &#8220;Really Simple Syndication&#8221;. It is a web feed format used to publish frequently updated content like blogs, [...]]]></description>
			<content:encoded><![CDATA[<p>Perhaps you&#8217;ve heard about RSS or you&#8217;ve seen the orange icon <img align="absMiddle" width="15" src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/rssfeedicon.jpg" alt="rssfeedicon.jpg" height="15" /> on many websites, blogs or forums. If you haven&#8217;t taken advantage of RSS feeds possibilities yet, perhaps it&#8217;s time you learn a little more about it.</p>
<p>RSS means &#8220;Really Simple Syndication&#8221;. It is a web feed format used to publish frequently updated content like blogs, forums, news headlines and podcasts.</p>
<h2>As A Reader</h2>
<p>An RSS feed allows you to read all your favorite news or blog posts from within a single interface called an <em>RSS reader </em>(or an <em>RSS aggregator</em>). This can be web-based or it can come as a software. There are plenty of free RSS reader in both web and software format. I tend to like web-based reader more cause you can access it from anywhere.</p>
<p>Here are a few web-based RSS readers:</p>
<ul>
<li><a target="_blank" href="http://www.google.com/reader">Google Reader</a></li>
<li><a target="_blank" href="http://www.newsgator.com/Individuals/NewsGatorOnline/Default.aspx">Newsgator</a></li>
<li><a target="_blank" href="http://my.aol.com/">My AOL</a></li>
<li><a target="_blank" href="http://www.rojo.com/">Rojo.com</a></li>
<li><a target="_blank" href="http://www.bloglines.com">Bloglines</a></li>
<li><a target="_blank" href="http://www.pageflakes.com/default.aspx">Pageflakes</a></li>
</ul>
<p>And a few software-based readers:</p>
<ul>
<li><a target="_blank" href="http://www.feedreader.com/download">Feedreader</a></li>
<li><a target="_blank" href="http://www.blogbridge.com/">Blogbridge</a></li>
<li><a target="_blank" href="http://www.feedexplorer.net/">FeedExplorer</a></li>
</ul>
<p>Once you&#8217;ve chosen your RSS reader, you need to subscribe to a feed. Go to your favorite blog and look for the RSS feed icon <img align="absMiddle" width="15" src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/rssfeedicon.jpg" alt="rssfeedicon.jpg" height="15" />. Click on it and copy the URL from the address bar to your clipboard (for example <a href="http://feeds.feedburner.com/thewebmasterscafe">http://feeds.feedburner.com/thewebmasterscafe</a>). Now let&#8217;s say you&#8217;re using Google Reader, log into your account at <a href="http://www.google.com/reader">http://www.google.com/reader</a>. Click on the &#8220;Add subscription&#8221; link.</p>
<p style="text-align: center"><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/googlereader_addsubscription.jpg" alt="googlereader_addsubscription.jpg" /></p>
<p>Paste the feed URL into the text box and click on the &#8220;Add&#8221; button:</p>
<p style="text-align: center"><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/googlereader_addsubscription2.jpg" alt="googlereader_addsubscription2.jpg" /></p>
<p>And now you can read all the blog posts from your online RSS reader:</p>
<p style="text-align: center"><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/rssfeed.jpg" alt="rssfeed.jpg" /></p>
<h2>As A Content Publisher</h2>
<p>If you&#8217;ve got a blog or if you run a forum, you can publish a feed of your content. This allows you to gain regular readers and know them better by analyzing your feed&#8217;s stats. Syndication sites like <a target="_blank" href="http://www.feedburner.com">Feedburner</a> even gives you the opportunity to monetize your feed with Google AdSense.</p>
<p>RSS feeds are not only useful to content publishers. You could also use an RSS feed to publish your product catalog to your retailers for example.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/what-is-an-rss-feed.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Favorite WordPress Plugins</title>
		<link>http://www.thewebmasterscafe.net/blogging/favorite-wordpress-plugins.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/favorite-wordpress-plugins.html#comments</comments>
		<pubDate>Mon, 26 Nov 2007 04:00:11 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/favorite-wordpress-plugins.html</guid>
		<description><![CDATA[For those who are less familiar with WordPress, plugins are addons that can enhance your blog&#8217;s functionnalities (read further for examples). The benefit of using (or developing) plugins is that you don&#8217;t have to modify WordPress&#8217; source code. Installing a plugin for WordPress is pretty easy: Extract the files from the archive you&#8217;ve downloaded. Upload the [...]]]></description>
			<content:encoded><![CDATA[<p>For those who are less familiar with WordPress, plugins are addons that can enhance your blog&#8217;s functionnalities (read further for examples). The benefit of using (or developing) plugins is that you don&#8217;t have to modify WordPress&#8217; source code.</p>
<p>Installing a plugin for WordPress is pretty easy:</p>
<ol>
<li>Extract the files from the archive you&#8217;ve downloaded.</li>
<li>Upload the plugin file (when it&#8217;s made of a single PHP file) or the directory (when it&#8217;s made of multiple files) to your blog using a <a target="_blank" href="http://sourceforge.net/projects/filezilla/">FTP client</a>. The plugin file (or folder) must be uploaded into <em>/wp-content/plugins</em>.</li>
<li>Enable the plugin from WordPress control panel (<em>http://www.yourblog.com/wp-admin</em>). Select the &#8220;Plugins&#8221; tab and activate the plugin from the list.</li>
</ol>
<p>Some plugins may require that you set some configuration values by editing them with your favorite text editor. Just look for a file named <em>readme.txt, install.txt </em>or any other text file that may contain the installation instructions for the plugin before you upload it.</p>
<h2>My Favorite WordPress Plugins</h2>
<p>While their might be some better plugins out there, here are those I mainly use:</p>
<ul>
<li><strong><a target="_blank" href="http://mnm.uib.es/gallir/wp-cache-2/">wp-cache</a></strong>: This plugin is great to help you improve your blog&#8217;s performance. It caches WordPress&#8217; pages in the database for some time. So instead of processing all the information each time a visitor comes to your blog, it serves the page (which has already been built) from the database.
<p><em>Be careful when using this plugin as it can interfer with other plugins. Some plugins require to be executed every time a page is accessed in order to function properly. As this plugin caches your blog&#8217;s pages, some plugins may not be executed everytime and could cause unwanted behaviors.<br />
</em></p>
</li>
<li><strong><a target="_blank" href="http://www.dountsis.com/projects/social-bookmarks/">Social Bookmarks</a></strong>: This plugin appends social bookmarks links to the end of your posts. You can choose from tens of social bookmarking sites to add to your blog.
<p><em>Social bookmarking is a way for Internet users to store, organize, share and search bookmarks of web pages. A social bookmarking system (like </em><a target="_blank" href="http://www.stumbleupon.com"><em>StumbleUpon.com</em></a><em>) allows users to save links to their favorite webpages and share them with other users who can rate these bookmarks. Social bookmarking can account for a great deal of traffic if used efficiently.<br />
</em></p>
</li>
<li><strong><a href="http://akismet.com/">Akismet</a></strong>: While this plugin comes with WordPress, it&#8217;s still a very useful to block unwanted comments (spam) on your blog. This plugin requires that you get a <a target="_blank" href="http://wordpress.com/api-keys/">WordPress.com API key</a> in order to function properly. To get your API key, just follow <a target="_blank" href="http://wordpress.com/api-keys/">this link</a>, signup for a WordPress account and you&#8217;ll get the key in your welcome email.</li>
<li><a target="_blank" href="http://andybeard.eu/custom-query-string-utw"><strong>Custom Query String UTW</strong></a>: This plugin allows you to specify how many posts per page are in shown in different parts of your site. For example, you could have 3 posts shown on the frontpage, 5 posts shown in category pages and 10 posts shown in the archive. Without this plugin, you&#8217;d have to use a single value for every part of your blog.</li>
<li><strong><a target="_blank" href="http://www.feedburner.com/fb/a/help/wordpress_quickstart">Feedburner FeedSmith</a></strong>: This plugin redirects your blog&#8217;s feed to Feedburner.</li>
<li><strong><a target="_blank" href="http://cavemonkey50.com/code/full-feed/">Full Text Feed</a></strong>: Allows you to display the full content of your posts in your RSS feed while displaying only a summary on your archive and category pages.</li>
<li><strong><a target="_blank" href="http://blog.jodies.de/archiv/2004/11/13/recent-comments/">Get Recent Comments</a></strong>: Encourage your readers to comment your posts by displaying their comments on your blog&#8217;s sidebar.</li>
<li><strong><a target="_blank" href="http://www.arnebrachhold.de/2005/06/05/google-sitemaps-generator-v2-final">Google Sitemaps</a></strong>: While this plugin doesn&#8217;t bring much to the visitor experience, this is a must have in my opinion. This plugins builds a sitemap file from your blog&#8217;s pages and pings Google automatically when a change is made to it.
<p><em>A sitemap is a text file in XML format that contains links to all the pages from your website. This file is usually located at the root of your website and is usually named sitemap.xml or sitemap.xml.gz. Although only Google and Yahoo allow sitemap submission, other search engines (like Live.com) will look for this file and pick it up automatically (if you&#8217;re lucky). When a search engine picks up your sitemap, it then knows the entire structure of your website, making it easier to crawl it and index it.<br />
</em></p>
</li>
<li><strong><a target="_blank" href="http://www.napolux.com/projects/myavatars/">MyAvatars</a></strong>: Displays your visitor&#8217;s MyBlogLog picture next to comments they leave on your blog. I&#8217;ve already made a post about <a href="http://www.thewebmasterscafe.net/blogging/mybloglog-avatars-wordpress-plugin.html">a bug in MyAvatars and how to solve it</a>.</li>
<li><strong><a href="http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/">Related Posts</a></strong>: Propose other relevant posts to your readers and encourage them to stay longer on your blog with this plugin.</li>
<li><strong><a href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/">Show Top Commentators</a></strong>: Encourage more feedback and discussion from readers, by rewarding them every time they post a comment.</li>
<li><strong><a target="_blank" href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe To Comments</a></strong>: Allows readers to receive notifications of new comments that are posted to an entry.</li>
<li><strong><a target="_blank" href="http://www.laptoptips.ca/projects/tinymce-advanced/">Tiny MCE Advanced</a></strong>: Now this a plugin I really love. It adds lots of functionnalities to WordPress&#8217; WYSIWYG editor. Read <em><a href="http://www.thewebmasterscafe.net/blogging/wordpress-wysiwyg-editor.html">WordPress Advanced WYSIWYG Editors</a></em>.</li>
<li><strong><a target="_blank" href="http://seologs.com/duplicate-content-cure/">WordPress Duplicate Content Cure</a></strong>: Since some of your content may be appear in more than one place on your blog (i.e.: in categories, archives, etc.), you may get penalized by Google. To prevent duplicate content to being indexed by Google, this plugin adds the &#8220;nofollow&#8221; meta tags to duplicate pages. Another must have.</li>
</ul>
<p>If you&#8217;ve found some useful plugins too, post them here!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/favorite-wordpress-plugins.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Protect Your Website Content &amp; Images</title>
		<link>http://www.thewebmasterscafe.net/web-design/protect-content-and-images.html</link>
		<comments>http://www.thewebmasterscafe.net/web-design/protect-content-and-images.html#comments</comments>
		<pubDate>Tue, 13 Nov 2007 04:00:13 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/web-design/protect-content-and-images.html</guid>
		<description><![CDATA[If you&#8217;ve ever got your content stolen, you know it kinda sucks. Not only content but also images. Now I am not making any references to a previous post about a website who stole some of my content cause I don&#8217;t care that much about this incident. Anyway I know I&#8217;ve probably stolen a few stock images myself [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever got your content stolen, you know it kinda sucks. Not only content but also images. Now I am not making any references to a previous post <a href="http://www.thewebmasterscafe.net/blogging/stealing-content-sucks.html">about a website who stole some of my content</a> cause I don&#8217;t care that much about this incident.</p>
<p>Anyway I know I&#8217;ve probably stolen a few stock images myself at some point but I now use free image banks.</p>
<h2>What Can You Do If Your Content Is Stolen?</h2>
<p>As a webmaster, blogger, designer or whatever, if your content is stolen, you can always file a DCMA (Digital Millennium Copyright Act).</p>
<ul>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/DMCA">DMCA definition at Wikipedia.com</a></li>
<li><a target="_blank" href="http://www.shoemoney.com/2006/03/14/dmca-what-does-it-mean-for-webmasters/">DMCA &#8211; What does it mean for webmasters?</a> &#8211; <em>Blogcast from shoemoney.com</em></li>
<li><a target="_blank" href="http://www.dailyblogtips.com/12-us-laws-bloggers-should-know/">12 U.S. Laws Bloggers Should Know</a></li>
</ul>
<p>You can find out if your content has been reproduced by using <a target="_blank" href="http://www.copyscape.com">CopyScape.com free service</a>. Simply type in the URL of the page you want to verify and see where it&#8217;s being used.</p>
<p style="text-align: center"><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/copyscape-results.jpg" alt="copyscape-results.jpg" /></p>
<p>You can also add a Copyscape.com banner at the bottom of your webpages. Not that it really protects you or anything but it let your readers know you are aware of content stealing.</p>
<h2>Protecting Your Images</h2>
<p>As stolen images cannot be detected by services like copyscape.com, you have to add a <em>signature</em> to them. This signature is called a watermark. This can either be visible or not. The thing with visible watermark is that they can easily be removed. Here are a few links on how to add watermarks to your images:</p>
<ul>
<li><a target="_blank" href="http://www.marcofolio.net/photoshop/create_a_hidden_watermark_in_images.html">Create a hidden watermark in images</a><em> - Photoshop Tutorial</em></li>
<li><a target="_blank" href="http://www-ss.com/tutorials/watermark/">Watermarking Images in Macromedia Fireworks</a></li>
</ul>
<h2>Where To Get Free Content And Images</h2>
<p>And if you&#8217;re tempted to steal someone else&#8217;s content always remember there are free online resources.</p>
<ul>
<li><a target="_blank" href="http://www.ezinearticles.com/">EzineArticle.com</a></li>
<li><a target="_blank" href="http://www.articlecity.com/">ArticleCity.com</a></li>
<li><a target="_blank" href="http://www.articlesfactory.com">ArticlesFactory.com</a></li>
<li><a target="_blank" href="http://www.ezinesearch.com">eZINESearch.com</a></li>
<li><a target="_blank" href="http://www.derekbeau.com/8-great-sources-for-free-stock-photos/">8 Great Sources For Free Stock Photos</a> from DerekBeau.com</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/web-design/protect-content-and-images.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stealing Content Sucks</title>
		<link>http://www.thewebmasterscafe.net/blogging/stealing-content-sucks.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/stealing-content-sucks.html#comments</comments>
		<pubDate>Mon, 05 Nov 2007 19:25:29 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/stealing-content-sucks.html</guid>
		<description><![CDATA[Usually when I browse through my website&#8217;s statistics, I happen to check referring websites just for the heck of it. Often I discover some nice resources and sometimes I discover some that sucks. Today I just saw http://blogging-oriented.blogspot.com in my stats and took a look at it. Guess what? This is the content that I [...]]]></description>
			<content:encoded><![CDATA[<p>Usually when I browse through my website&#8217;s statistics, I happen to check referring websites just for the heck of it.</p>
<p>Often I discover some nice resources and sometimes I discover some that sucks.</p>
<p>Today I just saw <a href="http://blogging-oriented.blogspot.com" target="_blank">http://blogging-oriented.blogspot.com</a> in my stats and took a look at it.</p>
<p>Guess what? This is the content that I saw on the home page (or at <a href="http://blogging-oriented.blogspot.com/2007/11/how-to-add-favicon-to-your-siteblog.html" target="_blank">http://blogging-oriented.blogspot.com/<br />
2007/11/how-to-add-favicon-to-your-siteblog.html</a>) :</p>
<p style="text-align: center"><img src="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/stealing-content1.jpg" alt="Content Stolen From TheWebmastersCafe.net" /></p>
<p>Except for the first sentence and the screenshot, the post has been copied word-for-word from my post located at <a href="http://www.thewebmasterscafe.net/web-design/adding-favicon.html" target="_blank">http://www.thewebmasterscafe.net/web-design/adding-favicon.html</a>! Talk about not being able to create your own content!</p>
<h2>There&#8217;s No Get-Rich-Quick Method</h2>
<p>I guess that with all the <em>make-money-online</em> craze that&#8217;s been going on lately on the web, people are putting up websites and blogs in the hope of making a quick buck. Well guess what? You just won&#8217;t make it that way. If you&#8217;re in to making it online on a professional level, provide your own unique, original and useful content.</p>
<h2>Do Not Steal Content</h2>
<p>If you can&#8217;t write for yourself, there are plenty of online resources that will provide you with some content. If you don&#8217;t mind having unoriginal content (i.e. if you don&#8217;t care about your website), go get some free articles online. There are plenty of websites that provide free content for you to publish:</p>
<ul>
<li><a href="http://www.ezinearticles.com/" target="_blank">EzineArticles.com</a></li>
<li><a href="http://www.articlecity.com" target="_blank">ArticleCity.com</a></li>
<li><a href="http://www.ideamarketers.com" target="_blank">IdeaMarketers.com</a></li>
</ul>
<p>If you are a little more serious about your online business, then hire a freelancer. There are plenty of people waiting to write for you for a few dollars. <a href="http://www.thewebmasterscafe.net/go/getafreelancer.php" target="_blank">GetAFreeLancer.com</a> comes to mind. There are other freelancing sites out there.</p>
<h2>Ask For Permission And Give Deserved Credit</h2>
<p>If you really have to use somebody else&#8217;s content (full or partial), ask for their permission. And if they&#8217;re ok with it, at least give them the credit they deserve.</p>
<p>And most of all, ask yourself <em><a href="http://www.thewebmasterscafe.net/blogging/is-blogging-right-for-you.html">is blogging right for you</a><a href="http://www.thewebmasterscafe.net/blogging/is-blogging-right-for-you.html" target="_blank">?</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/stealing-content-sucks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding MyBlogLog Avatars To WordPress Comments</title>
		<link>http://www.thewebmasterscafe.net/blogging/mybloglog-avatars-wordpress-plugin.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/mybloglog-avatars-wordpress-plugin.html#comments</comments>
		<pubDate>Fri, 02 Nov 2007 12:40:08 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/mybloglog-avatars-wordpress-plugin.html</guid>
		<description><![CDATA[A blog is a nice place to exchange ideas, meet people who have the same interests as you and build a community. MyBlogLog is a great tool to help you build this community around your blog. If you scroll down this page, you&#8217;ll see a MyBlogLog widget that displays the latest visitors&#8217; avatars. When people [...]]]></description>
			<content:encoded><![CDATA[<p>A blog is a nice place to exchange ideas, meet people who have the same interests as you and build a community. <a target="_blank" href="http://www.mybloglog.com">MyBlogLog</a> is a great tool to help you build this community around your blog. If you scroll down this page, you&#8217;ll see a MyBlogLog widget that displays the latest visitors&#8217; avatars.</p>
<p>When people comment on my blog, I like to see who they are. It gives a more personnal vibe to the post. This can be possible using the WordPress plugin developed at <a target="_blank" href="http://www.napolux.com/2007/07/23/myavatars-little-update/">Napolux.com</a>. Installing the plugin is pretty straightforward:</p>
<ol>
<li>unzip it&#8217;s content</li>
<li>upload the <em>MyAvatars</em> folder to your plugin directory</li>
<li>enable the plugin</li>
</ol>
<p>When you&#8217;re done, add the following code to <em>comments.php </em>in the comment loop:</p>
<p align="center" class="SourceCode">&lt;?php if(function_exists(&#8220;MyAvatars&#8221;)) MyAvatars(); ?&gt;</p>
<p>For my part, I&#8217;ve added it right before:</p>
<p align="center"><span class="SourceCode">&lt;?php comment_text() ?&gt;</span>  </p>
<p>As reported by Zac Johnson, the <a target="_blank" href="http://zacjohnson.com/stack-overflow-error/">MyAvatars plugin may generate a stack overflow error in Internet Explorer 7</a>. You can solve this problem by <a target="_blank" href="http://www.nice4rice.com/2007/04/11/myavatars-stack-overflow-error/">removing the Javascript code in the avatar&#8217;s image tag</a>.</p>
<p>If you don&#8217;t want to bother with this, you can download the fixed plugin here: <a href="http://www.thewebmasterscafe.net/wp-content/uploads/2007/11/myavatars.zip" title="myavatars.zip">myavatars.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/mybloglog-avatars-wordpress-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenAds And Wp-Cache</title>
		<link>http://www.thewebmasterscafe.net/make-money/wp-cache-and-openads.html</link>
		<comments>http://www.thewebmasterscafe.net/make-money/wp-cache-and-openads.html#comments</comments>
		<pubDate>Mon, 29 Oct 2007 18:56:21 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/make-money/wp-cache-and-openads.html</guid>
		<description><![CDATA[I came across a post from Shoemoney awhile ago in which I learned about improving WordPress performance with the wp-cache plugin. I just want to point out that if you are using OpenAds within your WordPress theme, using OpenAds&#8217; PHP invocation code will result in not rotating between banners associated to your publisher zone until the [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a post from Shoemoney awhile ago in which I learned about <a target="_blank" href="http://www.shoemoney.com/2007/09/06/cache-rules-everything-around-me/">improving WordPress performance with the wp-cache plugin</a>.</p>
<p>I just want to point out that if you are using OpenAds within your WordPress theme, using OpenAds&#8217; PHP invocation code will result in not rotating between banners associated to your publisher zone until the cached pages are expired.</p>
<p>The only workaround is to use the Javascript invocation code but keep in mind that this may alter your website performance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/make-money/wp-cache-and-openads.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced WordPress WYSIWYG Editors</title>
		<link>http://www.thewebmasterscafe.net/blogging/wordpress-wysiwyg-editor.html</link>
		<comments>http://www.thewebmasterscafe.net/blogging/wordpress-wysiwyg-editor.html#comments</comments>
		<pubDate>Mon, 29 Oct 2007 17:13:14 +0000</pubDate>
		<dc:creator>Stephane</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thewebmasterscafe.net/blogging/wordpress-wysiwyg-editor.html</guid>
		<description><![CDATA[While for some people the native WordPress editor may be sufficient, it&#8217;s kinda hard to make some more complex layouts with it&#8217;s basic functionnalities. Integrating Javascript to your content is made impossible as the editor breaks the code and while you can enter some HTML code, it may be broken too as the WordPress editor [...]]]></description>
			<content:encoded><![CDATA[<p>While for some people the native WordPress editor may be sufficient, it&#8217;s kinda hard to make some more complex layouts with it&#8217;s basic functionnalities.</p>
<p>Integrating Javascript to your content is made impossible as the editor breaks the code and while you can enter some HTML code, it may be broken too as the WordPress editor replaces some tags. For example, try adding a &lt;div&gt; and you&#8217;ll see that upon saving your post, &lt;div&gt; will be changed to a &lt;p&gt; tag.</p>
<h2>TinyMCE Advanced Plugin</h2>
<p>WordPress uses <a href="http://tinymce.moxiecode.com/">TinyMCE</a>, a Javascript content editor. If you&#8217;d like to keep using TinyMCE but would like to get advanced features, there&#8217;s the <a target="_blank" href="http://www.laptoptips.ca/projects/tinymce-advanced/">TinyMCE Advanced plugin</a> available for free. This plugin adds 16 plugins to TinyMCE: Advanced hr, Advanced Image, Advanced Link, Context Menu, Emotions (Smilies), Full Screen, IESpell, Layer, Media, Nonbreaking, Print, Search and Replace, Style, Table, Visual Characters and XHTML Extras. Together these plugins can add over 40 new buttons to the toolbar.</p>
<p>You can install this plugin the same way you install any other plugins: </p>
<ol>
<li><a target="_blank" href="http://downloads.wordpress.org/plugin/tinymce-advanced.zip">download TinyMCE Advanced</a></li>
<li>unzip the archive</li>
<li>upload the <em>tinymce-advanced</em> directory to your <em>wp-content/plugins</em> folder</li>
<li>activate the plugin</li>
</ol>
<p>TinyMCE Advanced gives you the possibilty of customizing the toolbars. Go into <em>Manage =&gt; TineMCE Advanced </em>and simply drag the toolbars you want to add to your editor.</p>
<p>What I really like about TinyMCE Advanced is that it can import your theme&#8217;s CSS styles.</p>
<h2>Advanced TinyMCE Editor Plugin</h2>
<p>There is also another WordPress plugin available at <a target="_blank" href="http://www.mkbergman.com/?page_id=383">http://www.mkbergman.com/?page_id=383</a>. This plugin adds up to 60 buttons to your WordPress editor. Installation is pretty much the same as the previous plugin.</p>
<h2>Other WYSIWYG Editors</h2>
<p>While it&#8217;s possible to disable TinyMCE to replace it by third parties editors such as FCKEditor, I still haven&#8217;t found one that&#8217;s working perfectly out of the box. FCKEditor is in fact one editor I&#8217;d like to see integrated into WordPress as a plugin as I am using it a lot for custom PHP applications I develop.</p>
<p>Still you can try it out but backup your database as using FCKEditor and reverting to TinyMCE may break your post layout.</p>
<ul>
<li><a target="_blank" href="http://www.deanlee.cn/2006/10/23/fckeditor-for-wordpress-plugin/">Dean&#8217;s FCKeditor for WordPress plugin 1.0</a></li>
<li><a target="_blank" href="http://www.rajprasad.net/plugins/editormonkey/">Editor Monkey 0.3</a> using FCKEditor and TinyMCE</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebmasterscafe.net/blogging/wordpress-wysiwyg-editor.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

