<?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>Blogging Encyclopedia - Enblogopedia &#187; WordPress</title>
	<atom:link href="http://www.enblogopedia.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enblogopedia.com</link>
	<description>Everything about blogs. Tips, tutorials, news, plugins and themes reviews and much much more!</description>
	<lastBuildDate>Tue, 15 Apr 2008 16:21:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress Plugin:Comment Quicktags Reloaded</title>
		<link>http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/</link>
		<comments>http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/#comments</comments>
		<pubDate>Sat, 26 May 2007 11:59:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/</guid>
		<description><![CDATA[For those who used the Comment Quicktags Plugin, you may noticed that it`s now breaking your theme and maybe giving a fatal error and disactivate by itself. I tired to find out what the problem is, and found that it`s the new structure of the quicktags.js file causing the problem. I`m not really a JS [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense--></span>For those who used the <strong>Comment Quicktags Plugin</strong>, you may noticed that it`s now breaking your theme and maybe giving a fatal error and disactivate by itself. I tired to find out what the problem is, and found that it`s the new structure of the <span class="pcode">quicktags.js</span> file causing the problem. I`m not really a JS expert(yet!), so my expressions(syntax) may not be professional/correct.<br />
<span id="more-103"></span><br />
Anyway, the problem lies on the new way some values are called by the <span class="pcode">quicktags.js</span> file. For example:</p>
<pre><code>document.write('&lt;input type="button" id="ed_spell" class="ed_button" onclick="edSpell(edCanvas);" title="Dictionary lookup" value="lookup" /&gt;');
document.write('&lt;input type="button" id="ed_close" class="ed_button" onclick="edCloseAllTags();" title="Close all open tags" value="Close Tags" /&gt;');</code></pre>
<p>Now:</p>
<pre><code>document.write('&lt;input type="button" id="ed_spell" class="ed_button" onclick="edSpell(edCanvas);" title="' + quicktagsL10n.dictionaryLookup + '" value="' + quicktagsL10n.lookup + '" /&gt;');
document.write('&lt;input type="button" id="ed_close" class="ed_button" onclick="edCloseAllTags();" title="' + quicktagsL10n.closeAllOpenTags + '" value="' + quicktagsL10n.closeTags + '" /&gt;');</code></pre>
<p>The <span class="pcode">quicktagsL10n</span> array is now holding the old values(<a href="http://trac.wordpress.org/ticket/3958">Internationalization</a> <a href="http://trac.wordpress.org/changeset/5167">purpose</a>), but somehow the plugin fails to understand it so one <a href="http://en.wikipedia.org/wiki/Span_and_div">DIV</a> is kept open all the time which cause the break in the theme!</p>
<p>So what I did is just telling the <span class="pcode">edToolbar()</span> function(that contain the DIV) what does this object(quicktagsL10n) represent!<br />
<strong>Note</strong>: I was going to ask <a href="http://www.asymptomatic.net">Owen Winkler</a> the writer of this great plugin to update his plugin but I couldn&#8217;t find a way to contact him and I believe he&#8217;s now busy with the <a href="http://habariproject.org/en/">new open source project</a>.<br />
Download: <a href='http://www.enblogopedia.com/blog/wp-content/uploads/comment_quicktags.zip' title='Comment Quicktag'>Comment Quicktag Plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Quick Tip:Update Your WP-Table Plugin</title>
		<link>http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/</link>
		<comments>http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/#comments</comments>
		<pubDate>Sat, 19 May 2007 12:18:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/</guid>
		<description><![CDATA[For those who use the great wp-Table plugin, please first upgrade your plugin to the lastest version(1.44 for this date) as previous versions contain a critical backdoor for hacker attack(more).
And until alex upgrade his plugin (again!), please edit this file wp-table/js/wptable-button.php and on line 12, change it to:
$wpconfig = realpath("../../../../wp-config.php");
Now your &#8220;wp-Table Browser&#8221; Button will [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense#buttonnob--></span>For those who use the great <a href="http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/">wp-Table plugin</a>, please first upgrade your plugin to the <a href="http://alexrabe.boelinger.com/?page_id=3">lastest version</a>(1.44 for this date) as previous versions contain a critical backdoor for hacker attack(<a href="http://alexrabe.boelinger.com/?p=110">more</a>).</p>
<p>And until alex upgrade his plugin (again!), please edit this file <em>wp-table/js/wptable-button.php</em> and on line 12, change it to:<br />
<code>$wpconfig = realpath("../../../../wp-config.php");</code><br />
Now your &#8220;wp-Table Browser&#8221; Button will work fine and no more &#8220;<strong>Could not found wp-config.php. Error in path :</strong>&#8221; will appear.(at least not for the wrong reason!) <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.2 Is Now Available!</title>
		<link>http://www.enblogopedia.com/wordpress-22-is-now-available/</link>
		<comments>http://www.enblogopedia.com/wordpress-22-is-now-available/#comments</comments>
		<pubDate>Wed, 16 May 2007 13:45:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/wordpress-22-is-now-available/</guid>
		<description><![CDATA[A new version of the great web-log platform was released early today. The new WP 2.2 or Getz has some new features, like Widgets integration, and over two hundred bug fixes.
New in this release:

WordPress Widgets &#8211; allow you to easily rearrange and customize areas of your weblog (usually sidebars) with drag-and-drop simplicity. 
Full Atom support.
A [...]]]></description>
			<content:encoded><![CDATA[<p><span class="radsense"><!--adsense#button--></span>A new version of the great web-log platform was <a href="http://wordpress.org/development/2007/05/wordpress-22/">released early today</a>. The new WP 2.2 or Getz has some new features, like Widgets integration, and over two hundred bug fixes.<br />
<strong>New in this release:</strong><span id="more-100"></span></p>
<ul>
<li><strong>WordPress Widgets</strong> &#8211; allow you to easily rearrange and customize areas of your weblog (usually sidebars) with drag-and-drop simplicity. </li>
<li><strong>Full Atom support</strong>.</li>
<li><strong>A new Blogger importer</strong> &#8211; After the update of Google`s free blog hosting software &#8220;Blogger&#8221;, some modification to the Import section was needed.</li>
<li><strong>Infinite comment stream</strong> &#8211; After the great import of the AJAX to WP 2.1 a small update at the Edit Comments page has been added.</li>
<li>We now protect you from activating a plugin or editing a file that will break your blog. I think I read this in the <a href="http://wordpress.org/extend/ideas/">Ideas Forum</a>, and by the way&#8230;WOW</li>
<li>Core plugin and filter speed optimizations should make everything feel a bit more snappy and lighter on your server.</li>
<li>Weâ€™ve added a hook for WYSIWYG support in a future version of Safari.</li>
</ul>
<p>In addition:</p>
<blockquote><p>there were also dozens of UI and accessibility improvements, ranging from more concise wording around options and links to things like a view and preview link above the content box when youâ€™re editing a post or page.</p></blockquote>
<p>Also lots of improvements were done &#8220;under the hood&#8221; which will help WP developers more and more.</p>
<p>Funny thing that I was attending to write an article about why WP team didn&#8217;t release a new version yet. Anyway and as usual&#8230;a small &#8220;Thank You&#8221; for these guys is the least thing we can do/say!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/wordpress-22-is-now-available/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Plugin Review:WP-Table Creating Tables Can&#8217;t Be Easier!</title>
		<link>http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/</link>
		<comments>http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 12:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/</guid>
		<description><![CDATA[Yesterday I was writing a Match Review in my soccer blog. I wanted to write down the statistics of the match in a table, so I searched for the easiest/fastest way to do it. Luckily, I found a great WordPress Plugin called wp-table written by Alex Rabe. This plugin is fantastic, and it can&#8217;t be [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense#buttonnob--></span>Yesterday I was writing a <a href="http://www.soccerspeech.com/ac-milan-fc-bayern-munich-match-review/">Match Review</a> in my <a href="http://www.soccerspeech.com/">soccer blog</a>. I wanted to write down the statistics of the match in a table, so I searched for the easiest/fastest way to do it. Luckily, I found a great <strong>WordPress Plugin</strong> called <a href="http://alexrabe.boelinger.com/?page_id=3">wp-table</a> written by <em>Alex Rabe</em>. This plugin is fantastic, and it can&#8217;t be easier to create a table!<span id="more-92"></span></p>
<p><span class="radsense"><img src='http://www.enblogopedia.com/blog/wp-content/uploads/plugin.gif' alt='plugin' /></span>This plugin doesn&#8217;t need any description as it has its own panel, you specify the size of the table, create it and then fill it with your data. The table will assigned an id so you can implement it to your posts by entering this small tag <strong>[TABLE=ID]</strong>. And that`s it!<br />
You can even style your table within the main panel or through the included <abbr title="Cascading Style Sheet">CSS</abbr> file!</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Another WordPress Security Release!</title>
		<link>http://www.enblogopedia.com/another-wordpress-security-release/</link>
		<comments>http://www.enblogopedia.com/another-wordpress-security-release/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 11:32:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/another-wordpress-security-release/</guid>
		<description><![CDATA[
WordPress Team announced few hours ago a new security release of both 2.1.x and 2.0.x versions. This update is highly recommend for all users of both branches.
These releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress codebase to protect against future problems.
These [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense#bannernob--><br />
WordPress Team announced few hours ago a new <a href="http://wordpress.org/development/2007/04/wordpress-213-and-2010/">security release</a> of both 2.1.x and 2.0.x versions. This update is highly recommend for all users of both branches.<span id="more-89"></span></p>
<blockquote><p>These releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress codebase to protect against future problems.</p></blockquote>
<p>These frequent updates start to annoy <a href="http://www.johntp.com/2007/04/03/wordpress-213-and-2010-released/">some people</a>, well, because they are lazy <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . But it annoys me because I have a slow internet connection and it`s not an easy job to upgrade/upload to a new version almost every month!</p>
<p>Anyway, thanks for the <a href="http://wordpress.org/">WP</a> team for this great , free, software <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
At the end, there is no 100% perfect software!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/another-wordpress-security-release/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tropical A New WordPress Theme!</title>
		<link>http://www.enblogopedia.com/tropical-a-new-wordpress-theme/</link>
		<comments>http://www.enblogopedia.com/tropical-a-new-wordpress-theme/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 20:30:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/tropical-a-new-wordpress-theme/</guid>
		<description><![CDATA[After one week with no posting, I`m happy to release this fresh and light theme. Based on Tropical (the template) originally designed by Free CSS Templates, the theme looks cool and meets some blogger`s needs!
I hope you like the theme, and I really want to thank Free CSS Templates for the great templates!
Download
See it in [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense--></span>After one week with no posting, I`m happy to release this fresh and light theme. Based on <a href="http://www.freecsstemplates.org/preview/tropical">Tropical (the template)</a> originally designed by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>, the theme looks cool and meets some blogger`s needs!</p>
<p>I hope you like the theme, and I really want to thank <a href="http://www.freecsstemplates.org/">Free CSS Templates</a> for the great templates!</p>
<p class="download"><a href="http://themes.wordpress.net/download.php?theme=2196">Download</a></p>
<p class="alert"><a href="http://themes.wordpress.net/testrun/?wptheme=2196">See it in action</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/tropical-a-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HowTo:Optimize Your Tag Page Title &#8211; Simple Tagging Plugin</title>
		<link>http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/</link>
		<comments>http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 16:23:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/</guid>
		<description><![CDATA[I&#8217;ve noticed when I installed the Simple Tagging Plugin that the WordPress can&#8217;t find a title to the tag search results page(tag page), so it`s just putting &#8220;- Enblogopedia&#8221;.
Is This Bad?
Well, having a lot of pages with the same page title isn&#8217;t a good thing, and it`ll obviously affect your tag pages position in SERPs.
Hopefully, [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense--></span>I&#8217;ve noticed when I installed the <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/" target="_blank">Simple Tagging Plugin</a> that the WordPress can&#8217;t find a title to the tag search results page(tag page), so it`s just putting &#8220;- Enblogopedia&#8221;.</p>
<h4>Is This Bad?</h4>
<p>Well, having a lot of pages with the same page title isn&#8217;t a good thing, and it`ll obviously affect your tag pages position in SERPs.</p>
<p>Hopefully, <a href="http://sw-guide.de" target="_blank">Michael Woehrer</a> has a lot of useful functions within his plugin that can be used to change the title of the Tag page.</p>
<p>For this, we`ll use two functions:<em>STP_GetCurrentTagSet()</em> and <em>STP_IsTagView()</em>.<br />
More about these functions can be found <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/simple-tagging-more-template-tags/">here</a>. Just as follows:<span id="more-86"></span></p>
<blockquote><p>The template tag &lt;?php STP_CurrentTagSet(); ?&gt; outputs the tags used in a tag search, that means it displays the current tags when a visitor is browsing tags.</p></blockquote>
<blockquote><p>The template tag STP_IsTagView() can be used to determine if the current view will be returning tag search results. It returns TRUE if a tag search was requested (that means that a visitor is browsing tags), FALSE otherwise.</p></blockquote>
<p>Here`re what you need to do.</p>
<p>First, edit your header.php file and replace the &lt;title&gt; tag as the following:<br />
<code>&lt;title&gt;&lt;?php if(function_exists('STP_IsTagView') &amp;&amp; STP_IsTagView()) { STP_CurrentTagSet();} else { bloginfo('name'); wp_title();} ?&gt;&lt;/title&gt;</code><br />
This way, if the plugin is activated and your are in the Tag page, your page title will show the tag as title. You can have a lot of forms of this code, such as:<br />
<code>&lt;title&gt;&lt;?php if(function_exists('STP_IsTagView') &amp;&amp; STP_IsTagView()) { STP_CurrentTagSet(); echo ' - ';  bloginfo('name');} else { bloginfo('name'); wp_title();} ?&gt;&lt;/title&gt;</code><br />
Or replacing <em>STP_CurrentTagSet(); echo &#8216; &#8211; &#8216;;  bloginfo(&#8216;name&#8217;);</em> with <em>echo &#8216;Search Results for &#8216;; STP_CurrentTagSet();</em>.</p>
<p>Or if you have a long blog name, just like mine, as I`m using &#8220;<em>Blogging Encyclopedia &#8211; Enblogopedia</em>&#8220;. <strong>And</strong> I`m also using the SEO Title Tag plugin. My code looks like:<br />
<code>&lt;title&gt;&lt;?php if(function_exists('STP_IsTagView') &amp;&amp; STP_IsTagView()) { STP_CurrentTagSet(); echo ' - Enblogopedia';} else { if (function_exists('seo_title_tag')) { seo_title_tag(); } else { bloginfo('name'); wp_title();}} ?&gt;&lt;/title&gt;</code><br />
So it`s really depend on your current Title tag, the easiest way is just to put the current title tag inside the <em>else {}</em> statement. This way, whenever you are <strong>not</strong> in a tag page it`ll show up your default(current) title tag.<br />
For more questions, feel free to <a href="#respond">drop a comment</a> anytime <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Enjoyed the article?! Then <a href="http://www.enblogopedia.com/feed/">subscribe to Enblogopedia now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Permalinks Migration</title>
		<link>http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/</link>
		<comments>http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 10:35:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/</guid>
		<description><![CDATA[Last week I decided to change my permalink structure from:
 /yyyy/mm/dd/post-slug/ to /post-slug/
For a lot of reasons&#8230;one to mention is&#8230;SEO!
Anyway, for this reason I asked for the rewrite rule that I should use for this propuse, in the ConnectedInernet Forum and  Ajay offered me a nice Plugin called &#8221; Permalinks Migration&#8220;.
It`s really a great [...]]]></description>
			<content:encoded><![CDATA[<p><span style="padding: 3px; float: right"><!--adsense--></span>Last week I decided to change my permalink structure from:<br />
<em> /yyyy/mm/dd/post-slug/</em> to <em>/post-slug/</em><br />
For a lot of reasons&#8230;one to mention is&#8230;SEO!</p>
<p>Anyway, for this reason I asked for the rewrite rule that I should use for this propuse, in the <a href="http://www.connectedinternet.co.uk/forum/index.php/topic,129.0.html">ConnectedInernet Forum</a> and  Ajay offered me a nice Plugin called &#8221; <a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/">Permalinks Migration</a>&#8220;.</p>
<p>It`s really a great plugin, that makes it easy to change your permalink without messing with your .htaccess file.</p>
<p>But since the real reason of writing this article is to review this plugin. And when I saw <a href="http://www.johntp.com/2007/02/28/wordpress-plugin-permalinks-migration/">JohnTP`s post</a> about it. I must say that it has some disadvantages!!!</p>
<p><span id="more-74"></span>The plugin it self works great, but it messes with my Old Feed Links!<br />
What I mean, my old feed links was, obviously,<br />
<code>/2006/01/12/what-ever/feed/</code><br />
and the new structure will make them looks like<br />
<code>/what-ever/feed/</code><br />
But this didn&#8217;t happen, unfortunatly! and I started to get a lot of 404 errors!<br />
So I asked for a solution in the <a href="http://wordpress.org/support/topic/107656?replies=8">WP support forums</a>, and the guys treat me very well!<br />
By adding this rewrite rule to my .htaccess file:<br />
<code>RewriteRule ^[0-9]{4}/[0-9]{2}/[0-9]{2}/([^/]+/feed/?.*) $1 [R=301,L]</code><br />
and everything is ok now.</p>
<p>So should you use this plugin?!<br />
Well I don&#8217;t know, first try to ask for a rewrite rule in <a href="http://wordpress.org/support/">WP support forum</a> or in <a href="http://www.connectedinternet.co.uk/forum/index.php">ConnectedInternet forum</a> and then after the plugin is fully completed, you can use it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Successfully Upgraded To WordPress 2.1.1</title>
		<link>http://www.enblogopedia.com/successfully-upgraded-to-wordpress-211/</link>
		<comments>http://www.enblogopedia.com/successfully-upgraded-to-wordpress-211/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 19:15:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/successfully-upgraded-to-wordpress-211/</guid>
		<description><![CDATA[After more than 4 hours of struggling and trying to upgrade my poor blog from 2.0.7 to WordPress 2.1.1, I successfully upgraded it!
The problem was that I have a slow internet connection, and what made it worst is the power cut!
You may not know that we have a power failure issues/problems here in Lebanon -Power [...]]]></description>
			<content:encoded><![CDATA[<p><span style="padding: 3px; float: right"><!--adsense#buttonnob--></span><span class="dropcap">A</span>fter more than 4 hours of struggling and trying to upgrade my poor blog from 2.0.7 to <strong>WordPress</strong> 2.1.1, I successfully upgraded it!</p>
<p>The problem was that I have a slow <em>internet connection</em>, and what made it worst is the power cut!<br />
You may not know that we have a power failure issues/problems here in Lebanon -Power Cut each 4 Hours!-, so <span id="more-71"></span>I turned off my computer in the middle of the upgrading process!<br />
Hopefully, today was the <a href="http://www.connectedinternet.co.uk/2007/02/23/march-24th-is-computer-shut-down-day-will-you-be-taking-part/" target="_blank">Computer Shut-Down Day</a> so I hope no one notice the <em>outage</em> <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Anyway everything is fine now (I hope!) and all plugins are working smoothly, I did replace UTW with &#8220;Simple Tagging&#8221; as I was preparing my self for this since I read <a href="http://www.connectedinternet.co.uk/2007/02/08/great-new-plugin-simple-tagging/">Everton`s article</a>. And what make this plugin great, is the ability to import your UTW tags with a simple click!</p>
<p>And now after the most important work is done (upgrading to 2.1.1), I still have one thing to do&#8230;which is the relaunch of <a href="http://www.enblogopedia.com/">Enblogopedia</a> with a new look and propose! SO <a href="http://www.enblogopedia.com/feed/">be in touch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/successfully-upgraded-to-wordpress-211/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Theme:Enlighten is Available Now!</title>
		<link>http://www.enblogopedia.com/wordpress-theme-enlighten-is-available-now/</link>
		<comments>http://www.enblogopedia.com/wordpress-theme-enlighten-is-available-now/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 14:09:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/wordpress-theme-enlighten-is-available-now/</guid>
		<description><![CDATA[After releasing the two successful previous themes. it`s time to announce the third and the last styleshout ported theme.
It`s called Enlighten. This theme has the same &#8220;feel&#8221; like the PixelGreen but with different look. You can say it`s a little bit classy and the colors are just coordinate with each other. AS in the previous [...]]]></description>
			<content:encoded><![CDATA[<p><span style="float:right;padding:3px;"><!--adsense--></span>After releasing the two <em>successful</em> <a href="http://www.enblogopedia.com/underground-another-cool-wordpress-theme/">previous</a> <a href="http://www.enblogopedia.com/pixelgreen-is-available-now/">themes</a>. it`s time to announce the third and the last <a href="http://www.styleshout.com/">styleshout</a> ported theme.</p>
<p><span style="float:right;padding:3px;clear:right;"><a title="enlighten" href="#" onclick="window.open('/blog/wp-content/plugins/simple-popup-images/popup.php?z=http://www.enblogopedia.com/myfiles/enlighten.jpg&#038;width=200&#038;height=150&#038;title=enlighten','imagepopup','width=200,height=150,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,screenx=150,screeny=150');return false" onmouseover="window.status='image popup: enlighten';return true" onmouseout="window.status='';return true"><img src="http://www.enblogopedia.com/myfiles/enlighten-thumbnail.jpg" width="150" height="113" alt="enlighten" title="enlighten" /></a></span>It`s called Enlighten. This theme has the same &#8220;feel&#8221; like the <a href="http://www.enblogopedia.com/pixelgreen-is-available-now/">PixelGreen</a> but with different look. You can say it`s a little bit classy and the colors are just coordinate with each other. AS in the previous two themes, this theme support the best and most popular plugins(I see), just &#8220;upload-n-active&#8221; and of course widget ready!<span id="more-69"></span></p>
<p>Just don&#8217;t forget to read the Read-Me file and you`ll be ready to go!</p>
<p class="download"><a href="http://themes.wordpress.net/download.php?theme=1599">Download</a> | <a href="http://www.enblogopedia.com/downloads/enlighten.zip">Mirror</a></p>
<p class="alert"><a href="http://themes.wordpress.net/testrun/?wptheme=1599">See it in action</a></p>
<p><!--adsense#banner--></p>
<p><strong>NOTE:</strong> To get latest updates and bug fixes <a href="http://www.enblogopedia.com/feed/"><strong>Subscribe Now</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/wordpress-theme-enlighten-is-available-now/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
