<?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>Enbeeone3 : A Freelancer &#187; Open Source</title>
	<atom:link href="http://enbeeone3.com/topic/open-source/feed" rel="self" type="application/rss+xml" />
	<link>http://enbeeone3.com</link>
	<description>&#34;I like social media  and Write about Social Web&#34;</description>
	<lastBuildDate>Fri, 23 Jul 2010 08:43:59 +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>How to Install Django on Centos 5</title>
		<link>http://enbeeone3.com/how-to-install-django-on-centos-5</link>
		<comments>http://enbeeone3.com/how-to-install-django-on-centos-5#comments</comments>
		<pubDate>Wed, 31 Mar 2010 16:29:49 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=991</guid>
		<description><![CDATA[In preparing to upgrade this server to Centos 5.x, I did a test install of the Centos &#8220;Server&#8221; configuration using VirtualBox. The &#8220;Server&#8221; configuration comes with Apache 2.x, Python 2.4, and mod_python pre-loaded.  Installing Django Here are the commands needed to install the latest version of Django:

$ yum install subversion
$ cd /var/www
$ mkdir django-src
$ [...]]]></description>
			<content:encoded><![CDATA[<p>In preparing to upgrade this server to Centos 5.x, I did a test install of the Centos &#8220;Server&#8221; configuration using <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>. The &#8220;Server&#8221; configuration comes with Apache 2.x, Python 2.4, and mod_python pre-loaded.  <strong>Installing Django</strong> Here are the commands needed to install the latest version of Django:</p>
<div>
<pre>$ yum install subversion
$ cd /var/www
$ mkdir django-src
$ cd django-src
$ svn co http://code.djangoproject.com/svn/django/trunk/
$ cd trunk
$ python setup.py install</pre>
</div>
<p><strong>Installing and Starting MySQL Server</strong> Here are commands needed to install and start MySQL:</p>
<div>
<pre>$ yum install mysql-server
$ /etc/rc.d/init.d/mysqld start</pre>
</div>
<p><strong>Installing Python MySQL Support</strong> This is the trickiest part. Python talks to MySQL using software called MySQLdb. The version available in Centos via Yum is 1.2.1-1 and isn&#8217;t compatible with the most recent Django codebase. Because of this you must download and compile MySQLdb.  Before compiling MySQLdb, enter the command below to make sure you have the necessary tools:</p>
<div>
<pre>$ yum install python-devel mysql-devel gcc</pre>
</div>
<p>Next, download the source tarball from <a href="http://sourceforge.net/project/showfiles.php?group_id=22307" target="_blank">SourceForge</a> then follow these steps:</p>
<div>
<pre>$ mv &lt;name of MySQLdb tarball&gt; ~
$ cd ~
$ tar zxvf &lt;filename of MySQLdb tarball&gt;
$ cd &lt;name of resulting directory&gt;
$ python setup.py build
$ python setup.py install</pre>
</div>
<p>When these steps are completed you should be good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/how-to-install-django-on-centos-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Login Mod For Pligg</title>
		<link>http://enbeeone3.com/twitter-login-mod-for-pligg</link>
		<comments>http://enbeeone3.com/twitter-login-mod-for-pligg#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:56:47 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Pligg]]></category>
		<category><![CDATA[pligg]]></category>
		<category><![CDATA[pligg mods]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter login]]></category>
		<category><![CDATA[twitter mod]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=947</guid>
		<description><![CDATA[Twitter Login Module For Pligg allows users to login to your Pligg site using Twitter Account. When a user logins using Twitter account, a user is also registered in your site.
What is Twitter Login?
Sign in with Twitter is the pattern of authentication that allows users to connect their Twitter account with third-party services in as [...]]]></description>
			<content:encoded><![CDATA[<p>Twitter Login Module For Pligg allows users to login to your Pligg site using Twitter Account. When a user logins using Twitter account, a user is also registered in your site.</p>
<p><strong>What is Twitter Login?</strong></p>
<blockquote><p><strong>Sign in with Twitter</strong> is the pattern of authentication that allows users to connect their Twitter account with third-party services in as little is one click. It utilizes OAuth and although the flow is very similar, the authorization URL and workflow differs slightly as described <a href="http://apiwiki.twitter.com/Sign-in-with-Twitter" target="_blank">Here</a>.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p></blockquote>
<p><strong>Why Twitter Login For Pligg?</strong></p>
<ul>
<li>Easy Login</li>
<li>No need to Register to Your System</li>
<li>Increases Your pligg site&#8217;s user</li>
<li>Oauth Authentication is Secure</li>
<li>Less Spam <strong><br />
</strong></li>
</ul>
<p><a href="http://twitter.com/" target="_blank"></a></p>
<p><strong>What do you Need ? </strong></p>
<p>A <a href="http://pligg.com" target="_blank">Pligg</a> Site, <a href="http://twitter.com/oauth" target="_blank">Twitter Api Key and Secret Key</a> from your Twitter account</p>
<p><strong>Demo</strong>:<a title="TweetRL" href="http://www.tweetrl.com" target="_blank">http://www.tweetrl.com </a></p>
<p><strong><a href="http://nepal.lunarsys.com/pligg-mods/10-twitter-login-module-for-pligg-v10-.html" target="_blank">Buy Now Only Its Only  $25</a></strong></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/twitter-login-mod-for-pligg/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Simple way to Add Twitter stream to Pligg Site</title>
		<link>http://enbeeone3.com/simple-way-to-add-twitter-stream-to-pligg-site</link>
		<comments>http://enbeeone3.com/simple-way-to-add-twitter-stream-to-pligg-site#comments</comments>
		<pubDate>Sun, 24 Jan 2010 06:57:34 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Pligg]]></category>
		<category><![CDATA[pligg]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter scan]]></category>
		<category><![CDATA[twitter widget]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=893</guid>
		<description><![CDATA[Adding Twitter Stream to Your Pligg site  allows the visitors to your site to search for topics on twitter that interest them. The results display twitter users that are interested in the same topic. You can then invite those users to come participate in your site. Visitors are also able to tweet stories out from [...]]]></description>
			<content:encoded><![CDATA[<p>Adding <a href="http://search.twitter.com/search?q=enbeeone3" target="_blank">Twitter Stream</a> to Your Pligg site  allows the visitors to your site to search for topics on twitter that interest them. The results display twitter users that are interested in the same topic. You can then invite those users to come participate in your site. Visitors are also able to tweet stories out from your Pligg site.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>Download and upload the following to your /js folder:</strong></p>
<p><strong><a href="http://enbeeone3.com/wp-content/uploads/2010/01/TwitterWidget.js">TwitterWidget</a><br />
</strong></p>
<p><strong>Open pligg.tpl, locate /body and add the following before:</strong></p>
<blockquote>
<div>{literal}<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;&lt;!–<br />
var rpnetTwitAttrs = {<br />
usernames: &#8220;enbeeone3,surfider&#8221;,<br />
count: 5,<br />
title: &#8220;Twitter Stream&#8221;,<br />
showImages: true,<br />
imageHeight: ‘48px’,<br />
imageWidth: ‘48px’<br />
};<br />
// –&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.domain.com/js/TwitterWidget.js&#8221;&gt;<br />
&lt;/script&gt;<br />
{/literal}</div>
</blockquote>
<p>make sure you change the domain.com to whatever your url is.  The values for “username” can be changed to whatever Twitter id’s you want to display.</p>
<p><strong>Open sidebar.tpl and add the following line where you want the stream to appear:</strong></p>
<blockquote>
<div>{if $pagename neq &#8220;story&#8221;}{assign var=sidebar_module value=&#8221;twitterstream&#8221;}{include file=$the_template_sidebar_modules.&#8221;/wrapper.tpl&#8221;}{/if}</div>
</blockquote>
<p>Save and close.</p>
<p><strong>Now, create a file called twitterstream.tpl and add the following to it:</strong></p>
<blockquote>
<div>&lt;div&gt;<br />
&lt;a id=&#8221;rpnet_twTitle&#8221; href=&#8221;#&#8221;&gt;Twitter Stream&lt;/a&gt;&lt;/div&gt;<br />
&lt;div id=&#8221;rpnet_twitterWidget&#8221;&gt;</div>
<div>Get your username listed here by &lt;a title=&#8221;Submit a tutorial&#8221; href=&#8221;http://www.domain.com/submit&#8221;&gt;submitting tutorials&lt;/a&gt;&lt;/div&gt;</div>
</blockquote>
<p>Again, be sure to change domain.com to whatever your url is.</p>
<p><strong>Save and upload to your sidebar_modules directory.</strong></p>
<p>That’s it.</p>
<p><strong>Notes:</strong></p>
<p><strong>Because of Twitter’s API limitations on the number of API calls in one hour, the stream may appear blank after a while, depending on the traffic to your site, if it does, you will need to wait until the hour is up.  I am hoping to have a cache feature added it to soon to prevent time outs.</strong></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><strong><br />
</strong></p>
<p>Now you Make a Choice Again, <a href="http://www.pligg.com/pro/catalog/modules/twitter-scan-99.html" target="_blank">Trade your $14.90</a> to your Own max, 10 Minutes of time <img src='http://enbeeone3.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/simple-way-to-add-twitter-stream-to-pligg-site/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add Retweet Button to Pligg</title>
		<link>http://enbeeone3.com/how-to-add-retweet-button-to-pligg</link>
		<comments>http://enbeeone3.com/how-to-add-retweet-button-to-pligg#comments</comments>
		<pubDate>Sun, 24 Jan 2010 06:42:57 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Pligg]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[pligg]]></category>
		<category><![CDATA[retweet]]></category>
		<category><![CDATA[Tweetmeme]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=890</guid>
		<description><![CDATA[Best way to Share your Pligg Story to Twitter is sharing through Tweetmeme.com , largest twitter Link Scaning Service,
You can add a Retweet Button to your Own Website , http://tweetmeme.com/about/retweet_button
You Have a Choice whether you get it from http://www.pligg.com/pro/catalog/modules/ultimate-retweet-103.html , or spend just few minutes and add some codes to your Pligg site. You can [...]]]></description>
			<content:encoded><![CDATA[<p>Best way to Share your Pligg Story to Twitter is sharing through <a href="http://www.tweetmeme.com" target="_blank">Tweetmeme.com</a> , largest twitter Link Scaning Service,</p>
<p>You can add a Retweet Button to your Own Website , <a href="http://tweetmeme.com/about/retweet_button" target="_blank">http://tweetmeme.com/about/retweet_button</a></p>
<p>You Have a Choice whether you get it from <a href="http://www.pligg.com/pro/catalog/modules/ultimate-retweet-103.html" target="_blank">http://www.pligg.com/pro/catalog/modules/ultimate-retweet-103.html </a>, or spend just few minutes and add some codes to your Pligg site. You can Donate your $8.75 and <a href="http://www.google.com/relief/haitiearthquake/#utm_campaign=en&amp;utm_source=en-ha-na-us-sk&amp;utm_medium=ha&amp;utm_term=haiti%20donations" target="_blank">Support Haiti </a>, rather than Paying for the &#8220;ULTIMATE RETWEET&#8221; module that Pligg Pro shop is selling.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>It’s actually quite simple.</p>
<p><strong>Open, link_summary.tpl, add where you want the button to appear:</strong></p>
<blockquote>
<div>{literal}<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;&lt;!–mce:0–&gt;&lt;/script&gt;<br />
&lt;script src=&#8221;http://tweetmeme.com/i/scripts/button.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;!–mce:1–&gt;&lt;/script&gt;<br />
{/literal}</div>
</blockquote>
<p>That’s it.</p>
<div id="TixyyLink" style="border: medium none ; overflow: hidden; color: #000000; background-color: transparent; text-align: left; text-decoration: none;">
<p><strong>If you want the full size button, remove this line:</strong></p>
<blockquote>
<div>tweetmeme_style = ‘compact’;</div>
</blockquote>
<p>Good Luck!</p>
<div id="TixyyLink" style="border: medium none ; overflow: hidden; color: #000000; background-color: transparent; text-align: left; text-decoration: none;"><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/how-to-add-retweet-button-to-pligg/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom WordPress Installation</title>
		<link>http://enbeeone3.com/custom-wordpress-installation</link>
		<comments>http://enbeeone3.com/custom-wordpress-installation#comments</comments>
		<pubDate>Sun, 17 Jan 2010 07:52:02 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom wordpress]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp install]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=872</guid>
		<description><![CDATA[I install WordPress a lot. Unfortunately, there are some things that I don’t care for with the current WordPress default installation files.
When you’re doing one or two installations every so often, it’s no big, but for me it saves more time to tweak the installation files once so that I don’t need to worry about [...]]]></description>
			<content:encoded><![CDATA[<p>I install WordPress a lot. Unfortunately, there are some things that I don’t care for with the current WordPress default installation files.</p>
<p>When you’re doing one or two installations every so often, it’s no big, but for me it saves more time to tweak the installation files once so that I don’t need to worry about tweaking it on the backend later.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>What are these tweaks?</p>
<ul>
<li>Custom admin username, admin display name, blog description, default category, and blog URL (I have a tendency of installing the WordPress files in their own directory separate from the blog’s home page)</li>
<li>I’ve never been a huge fan of the phone home feature, so I’ve removed the blog address when checking for updates</li>
<li>Although security by obscurity isn’t the greatest security defense, I still don’t feel comfortable advertising my blogging software and version, hence the WP generators have been removed from the head/RSS meta completely</li>
<li>The default links and post/page/comment have been omitted because, frankly, I get tired of manually deleting them from every new installation</li>
<li>Since the autosave/revision feature is overkill and DB bloat in most of my cases, I’ve added a line to the wp-config-sample.php file to disable it by default (of course, this only applies to installations that don’t already have an existing wp-config.php file handy)</li>
</ul>
<p><img class="aligncenter size-full wp-image-876" title="custonwpinstall-thumb" src="http://enbeeone3.com/wp-content/uploads/2010/01/custonwpinstall-thumb.png" alt="custonwpinstall-thumb" width="423" height="480" /></p>
<p>Normally I don’t release these tweaks since they’re for my own personal use, but this time around, I figured <em>why not?</em></p>
<p>Before downloading and using these WordPress files, please make sure you’re alright with the above—if not, don’t use them. Also, these files come with no warranties or guarantees—i.e. use at your own risk. If your server blows up or catches fire (highly unlikely), you’re on your own. <img src="http://www.optiniche.com/blog/0/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/custom-wordpress-installation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 WordPress Tips to Make Your Blog Look Like a Website</title>
		<link>http://enbeeone3.com/10-wordpress-tips-to-make-your-blog-look-like-a-website</link>
		<comments>http://enbeeone3.com/10-wordpress-tips-to-make-your-blog-look-like-a-website#comments</comments>
		<pubDate>Sat, 16 Jan 2010 05:43:10 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=856</guid>
		<description><![CDATA[Whatever industry you happen to be in, you want to stand out from the crowd and be unique, and not give the impression that your online presence is just a slightly modified cut and paste job. Of course, if you’re depending on a pre-built content management framework like WordPress for the core of your blog [...]]]></description>
			<content:encoded><![CDATA[<p>Whatever industry you happen to be in, you want to stand out from the crowd and be unique, and not give the impression that your online presence is just a slightly modified cut and paste job. Of course, if you’re depending on a pre-built content management framework like WordPress for the core of your blog or website, then that could prevent your online presence from truly standing out.</p>
<p>So, in this article I’ll run through 10 fairly straightforward ways that a beginning developer or blogger can customize their WordPress theme to ensure it doesn’t “look like a blog” — at least to a certain degree. Keep in mind that the goal here is not to <em>hide</em> the fact that a website is using <a href="http://enbeeone3.com/top-30-best-wordpress-plugins">WordPress</a> — that’s quite difficult, if not impossible. The ultimate goal here is to help your website have a seamless, consistent, look and feel that does not necessarily scream “WordPress-driven” from the instant the home page loads up.</p>
<p>NOTE: These tips are for beginning <a href="http://enbeeone3.com/wpscoop-com-dedicated-to-bringing-you-wordpress-related-news-reviews-and-stories">WP developers</a> who are coding themes for their own site, or experimenting with theme development. Most likely, these tips would not apply to custom downloaded themes that are pre-built and probably already have many of these customizations.</p>
<h3>1. Customize Your Sidebar and Keep it Consistent</h3>
<p>The sidebar in WordPress is a dead “giveaway” when a user visits your site. The sidebar will have default titles like “Blogroll”, “Categories” and “Archives”. You can easily change the text of these titles, and which sections are displayed, by editing the sidebar.php file in the theme directory. Also, WordPress displays a different sidebar depending on what page of the site you’re on, which can also be changed. I personally prefer to display virtually the same sidebar on all pages, to keep the site consistent.</p>
<p>Even if you’re not familiar with PHP, WordPress code is very developer-friendly, and easy to work with. A simple knowledge of how functions are called and how to open and close <code>if</code> statements is often more than enough to help you customize some of the sidebar code.</p>
<p>Also, you can easily duplicate and customize certain sidebar sections. Look at the sidebar here on Impressive Webs: You’ll notice there’s a list for “Articles” and “Tutorials”. This is done by duplicating the “categories” section and controlling what categories are displayed using parameters inside the function call for that particular section.</p>
<p>Check out the WordPress Codex for further information on <a rel="external" href="http://codex.wordpress.org/Template_Tags/wp_list_categories">customizing category listings</a>.</p>
<h3>2. Use “Decategorizer” <a href="http://enbeeone3.com/wpscoop-com-dedicated-to-bringing-you-wordpress-related-news-reviews-and-stories">Plugin</a> for Cleaner URLs</h3>
<p>One of the most obvious ways to customize the look of your blog’s urls is to use clean permalinks, rather than the default querystring driven url structure. But that’s an obvious one. No self-respecting blogger would fail to enable custom urls, which can be done easily through the WP dashboard.</p>
<p>But one thing you cannot do through the dashboard is remove the word “category” from links that point to specific categories on your site. That’s where <a href="http://wordpress.org/extend/plugins/decategorizer/">Decategorizer</a> comes in handy. This excellent plugin, which I’m using here on Impressive Webs, will strip the word “category” out of your WordPress urls, leaving a much cleaner experience, taking away the “blog” look and contributing to a more customized, branded feel for your website. Decategorizer will also automatically create 301 redirection for all your old category links, and works with subcategories.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>The Decategorizer plugin had a few bugs, which have recently been corrected, and also requires that you install the <a rel="external" href="http://wordpress.org/extend/plugins/redirection/">Redirection</a> plugin, for Decategorizer to work properly.</p>
<p>Be sure to read carefully the documentation and installation instructions for these plugins to ensure they are installed and functioning as expected.</p>
<h3>3. Customize Metadata for Individual Posts</h3>
<p>Every post has “metadata” contained inside of paragraph tags at the bottom of each blog post. This data is generated dynamically through the loop that pulls your content out of the database. You can easily edit, delete, or modify any of these pieces of data that are displayed with each entry, which can be found inside of the index.php file in your theme directory. The default look for the metadata section looks like this in WordPress 2.8.1:</p>
<blockquote><p><span><span>&lt;</span><span>p</span><span> </span><span>class</span><span>=</span><span>&#8220;postmetadata&#8221;</span><span>&gt;</span><span>&lt;?</span><span>php</span><span> the_tags(&#8216;Tags: &#8217;, &#8217;, &#8217;, &#8217;</span><span>&lt;</span><span>br</span><span> </span><span>/&gt;</span><span>&#8216;); </span><span>?&gt;</span><span> Posted in </span><span>&lt;?</span><span>php</span><span> the_category(&#8216;, &#8217;) </span><span>?&gt;</span><span> | </span><span>&lt;?</span><span>php</span><span> edit_post_link(&#8216;Edit&#8217;, &#8221;, &#8217; | &#8217;); </span><span>?&gt;</span><span> </span><span>&lt;?</span><span>php</span><span> comments_popup_link(&#8216;No Comments &amp;#187;&#8217;, &#8217;1 Comment &amp;#187;&#8217;, &#8217;% Comments &amp;#187;&#8217;); </span><span>?&gt;</span><span>&lt;/</span><span>p</span><span>&gt;</span></span></p></blockquote>
<p>By editing the above section of code, you can choose to display only comments and categories, and even alter the characters that are displayed. For example the <code>&amp;#187;</code> will display ». You have the option to remove those characters and use something more appropriate for your site’s look.</p>
<h3>4. Disable Comments (Not Recommended)</h3>
<p>This is not necessarily something I would recommend, since user-contributed comments are a huge part of the blogging world, however, it should definitely be pointed out that removing the “Post a Comment” section at the bottom of every post would be a sure-fire way to adjust your blog to ensure a more customized look and feel.</p>
<p>While this would contribute to a “non-blog” atmosphere on your website, it is highly recommended that you keep user comments open and instead customize the look of the comment area. Of course, if you’re using WordPress purely as a content management system for developing pages instead of “blog posts” then this would be an obvious choice, and would make more sense.</p>
<h3>5. Don’t Use “Tags” or a “Tag Cloud” (Not Recommended)</h3>
<p>Again, while this customization option is not necessarily recommended, it is certainly an effective way to customize your blog so that it does not resemble every other WordPress installation on the World Wide Web. “Tags” are keywords that you can add to individual posts in your WordPress dashboard. They are similar to categories, but provide a wider interrelationship between posts.</p>
<p>Tags associated with a particular post allow users to click on certain keywords to view more entries related to that keyword, similar to clicking on a specific category. Tags also provide SEO benefits, as they help Google and blog directories properly categorize your blog’s pages. So, while you do have the option to avoid using tags on your posts, thereby ensuring a cleaner look to your website, be aware of the drawbacks of doing so.</p>
<p>For simplicity, I personally do not use tags on Impressive Webs. I like each post to be associated with 1-3 categories, and nothing more. That’s just a personal preference to keep the content the primary focus. I prefer to attract users who will actually read the content, as opposed to the ones that are click-happy and bookmark everything.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>6. Change the Default Display of the Title Bar Content</h3>
<p>The header.php file in WordPress’s default theme has a title bar that is coded like this:</p>
<blockquote><p><span><span>&lt;</span><span>title</span><span>&gt;</span><span>&lt;?</span><span>php</span><span> wp_title(&#8216;&amp;laquo;&#8217;, true, &#8217;right&#8217;); </span><span>?&gt;</span><span> </span><span>&lt;?</span><span>php</span><span> bloginfo(&#8216;name&#8217;); </span><span>?&gt;</span><span>&lt;/</span><span>title</span><span>&gt;</span></span></p></blockquote>
<p>Once again, you can see the <code>«</code> character that is highly overused in the web development industry. (Not to mention that it’s actually a left quotation mark for french text!) You can replace that character with a different one, and even change the way the page titles are displayed.</p>
<p>You’ll notice there’s a function called <code>wp_title</code> that holds 3 parameters (including the <code>«</code> character). The third parameter tells WordPress where to display the post title — to the left or to the right of your blog name.</p>
<p>You also have the option to remove the function that displays your blog’s name, and instead just manually enter a more keyword-friendly title. The blog name that displays in your Dashboard under “settings” will still display your official blog name on RSS readers.</p>
<h3>7. Use the “Pages” Sidebar Section as Your Main Navigation</h3>
<p>While I’ve already discussed a little bit about the sidebar, it’s worth mentioning separately that the “pages” section of the sidebar can easily serve as your main navigation bar. At first glance, nobody will even notice that this has been done.</p>
<p>In the default WP theme, here’s the code that generates the “pages” section of the sidebar, found in sidebar.php:</p>
<blockquote><p><span><span>&lt;?</span><span>php</span><span> wp_list_pages(&#8216;</span><span>title_li</span><span>=</span><span>&lt;</span><span>h2</span><span>&gt;</span><span>Pages</span><span>&lt;/</span><span>h2</span><span>&gt;</span><span>&#8216; ); </span><span>?&gt;</span></span></p></blockquote>
<p>Simply take that piece of code and place it wherever you want your main navigation to display. Of course, you’ll have to style it to your liking, in line with your theme’s look. And most likely you’ll want to remove the title of that section. You can do that by simply removing everything after the equals sign in the single parameter, so it will look like this:</p>
<blockquote><p><span><span>&lt;?</span><span>php</span><span> wp_list_pages(&#8216;</span><span>title_li</span><span>=&#8217; ); </span><span>?&gt;</span><span><br />
</span></span></p></blockquote>
<p>Use the WordPress Codex to see other ways to <a rel="external" href="http://codex.wordpress.org/Template_Tags/wp_list_pages">customize the look of the page list</a> in the default wordpress theme.</p>
<h3>8. Don’t Call Your Website a “Blog”</h3>
<p>Okay, this is not really a WordPress tip, per se. It’s more of a marketing recommendation for the purpose of more effective branding in conjunction with a site that just happens to use WordPress as its engine. Serious websites that provide significant content are viewed as “communities” or “resources”, instead of “blogs”. The word “blog” nowadays is probably more appropriate for individuals who post thoughts and musings on various personal and professional topics.</p>
<p>If you have long-term plans for your website, and would like to expand it into a thriving online community that is respected and recognized in your industry, then you need to view it that way from the start, and communicate that atmosphere to your users — even if you are starting out small and really are just a single “blogger” posting thoughts and musings on relevant industry matters.</p>
<h3>9. Remove or Customize Default Text and Title Attributes</h3>
<p>While I’ve already touched on the customization of a few text elements of the default WordPress theme, there are other little text snippets that can be edited, removed, or appended to. An obvious example is the “Powered by WordPress” section in the footer. Your website’s footer seems simple, but it is potentially a <a rel="external" href="http://www.smashingmagazine.com/2008/04/08/footers-in-modern-web-design-creative-examples-and-ideas/">significant part of your site’s look, feel, and overall image</a>.</p>
<p>There are also <code>title</code> attributes that are embedded in anchor tags throughout the site. Here is one example, found in the index.php file:</p>
<blockquote><p><span><span>&lt;</span><span>h2</span><span>&gt;</span><span>&lt;</span><span>a</span><span> </span><span>href</span><span>=</span><span>&#8220;&lt;?php the_permalink() ?&gt;&#8221;</span><span> </span><span>rel</span><span>=</span><span>&#8220;bookmark&#8221;</span><span> </span><span>title</span><span>=</span><span>&#8220;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&#8221;</span><span>&gt;</span><span>&lt;?</span><span>php</span><span> the_title(); </span><span>?&gt;</span><span>&lt;/</span><span>a</span><span>&gt;</span><span>&lt;/</span><span>h2</span><span>&gt;</span><span><br />
</span></span></p></blockquote>
<p>The code above is the section that will display the title of each post listed on your home page. The <code>title</code> attribute in the anchor tag has the super-obvious text of “Permanent link to …” and then the PHP function that spits out the title. You can modify this and other default text that appears throughout your WP theme.</p>
<h3>10. Use “Nice Search” Plugin for Clean Search URLs</h3>
<p><a rel="external" href="http://txfx.net/code/wordpress/nice-search/">Nice Search</a> is a very simple plugin that makes searches performed on your website look less “WordPress-y” and more like a custom search engine installed on your website. According to the author’s website:</p>
<blockquote><p>“This is a really simple plugin that redirects your WordPress searches (?s=search-term) to the pretty-looking URI version: /search/search-term, and also converts spaces (%20) to plus symbols.”</p></blockquote>
<p>Although this plugin has not been updated in some time, I do have it successfully running on WordPress 2.6.3 on another website, so it seems to be compatible with some of the more recent versions of WordPress.</p>
<h3>Conclusion</h3>
<p>I hope beginning WP theme developers, and possibly some intermediates, found these tips helpful. Most of this is compiled from my own personal, and somewhat limited experience with WordPress and PHP, so I’m sure there’s lots I’ve missed, and lots where I’ve simply stated the obvious.</p>
<p>I hope some of these tips will encourage “bloggers” to develop a more customized and branded look and feel to their site, allowing them to break free from blogging conformity.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/10-wordpress-tips-to-make-your-blog-look-like-a-website/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>View module positions on a Joomla site with ?tp=1</title>
		<link>http://enbeeone3.com/view-module-positions-on-a-joomla-site-with-tp1</link>
		<comments>http://enbeeone3.com/view-module-positions-on-a-joomla-site-with-tp1#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:51:25 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla modules]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[module postion]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=855</guid>
		<description><![CDATA[So, you have a Joomla site, but you can’t seem to figure out what position a module is situated into on your site.
Maybe you are looking at template companies demo and want to understand how they layed it out? Perhaps you are just a snoop.  
Well it’s easy peasy to do this.  Just [...]]]></description>
			<content:encoded><![CDATA[<p>So, you have a Joomla site, but you can’t seem to figure out what position a module is situated into on your site.</p>
<p>Maybe you are looking at template companies demo and want to understand how they layed it out? Perhaps you are just a snoop.  <img src="http://joomlatips.com/wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" /><br />
Well it’s easy peasy to do this.  Just add ?tp=1 to the end of a Joomla url, preferably a non SEF url.<br />
You will then be able to see all the published modules on that page.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-857" title="modules_joomla" src="http://enbeeone3.com/wp-content/uploads/2010/01/modules_joomla.png" alt="modules_joomla" width="668" height="512" /><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Here are a few examples.</p>
<ul>
<li><a onclick="javascript:pageTracker._trackPageview('/outbound/article/joomla.org?tp=1  ');" href="http://joomla.org/?tp=1">http://joomla.org?tp=1 </a></li>
<li><a title="joomla junkie club" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.joomlajunkie.com?tp=1');" href="http://www.joomlajunkie.com/?tp=1" target="_blank">http://www.joomlajunkie.com?tp=1</a></li>
<li><a title="website design and hosting" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.columbusgeek.com');" href="http://www.columbusgeek.com/?tp=1" target="_blank">http://www.columbusgeek.com/?tp=1</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/view-module-positions-on-a-joomla-site-with-tp1/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remove the “Powered by Joomla” message on your site</title>
		<link>http://enbeeone3.com/remove-the-%e2%80%9cpowered-by-joomla%e2%80%9d-message-on-your-site</link>
		<comments>http://enbeeone3.com/remove-the-%e2%80%9cpowered-by-joomla%e2%80%9d-message-on-your-site#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:38:43 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[joomla 1.5.xx]]></category>
		<category><![CDATA[joomla. module]]></category>
		<category><![CDATA[powered by joomla]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=853</guid>
		<description><![CDATA[Easily one of the most asked questions in Joomla existence.  This is probably one of the easiest ones to change as well.
While it is best to leave this message on your site as it helps spread the Joomla love, sometimes your clients do not want to partake in the love fest.
In Joomla 1.5.xx if [...]]]></description>
			<content:encoded><![CDATA[<p>Easily one of the most asked questions in Joomla existence.  This is probably one of the easiest ones to change as well.</p>
<p>While it is best to leave this message on your site as it helps spread the Joomla love, sometimes your clients do not want to partake in the love fest.</p>
<p>In Joomla 1.5.xx if you want to remove the footer, go to Extensions &gt; Module Manager and unpublish the footer module. If you want to change the text, you need to get out your FTP client and do some changes.<br />
Go to the language directory, go to the folder of the language you want to change, (in our case English), then find the mod_footer.ini. Search for “powered by” and change the text to whatever you want your text in the footer to be.</p>
<p>In some cases the template you are using might have it hard-coded in, or done differently. In this circumstance you should ask the developer of the template you are using.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/remove-the-%e2%80%9cpowered-by-joomla%e2%80%9d-message-on-your-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically change your footer copyright</title>
		<link>http://enbeeone3.com/automatically-change-your-footer-copyright</link>
		<comments>http://enbeeone3.com/automatically-change-your-footer-copyright#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:33:08 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla tips]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=849</guid>
		<description><![CDATA[Another year passes by with all the usual fun and frivolity, however, Did you remember to change your Copyright on your website footer?
Chances are, this wasn’t too high on your list, and you might overlook it until somebody mentions it to you in May.
There is no reason to have to do this yearly maintenance if [...]]]></description>
			<content:encoded><![CDATA[<p>Another year passes by with all the usual fun and frivolity, however, Did you remember to change your Copyright on your website footer?</p>
<p>Chances are, this wasn’t too high on your list, and you might overlook it until somebody mentions it to you in May.<br />
There is no reason to have to do this yearly maintenance if you don’t mind doing a little cut and pasting.</p>
<p>First, find where your copyright is inserted. In Joomla, it is generally at the bottom of the templates index.php file. Depending on the template, it may be in a different location. Your mileage may vary.</p>
<p><img class="aligncenter size-full wp-image-850" title="2010-01-05_1435" src="http://enbeeone3.com/wp-content/uploads/2010/01/2010-01-05_1435.png" alt="2010-01-05_1435" width="468" height="77" /></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Now, we will simply change the 2009 date, to this bit of php code:<br />
(Remove the space after the &lt; and before the &gt;)</p>
<blockquote><p><code> &lt; ?php echo date('Y');? &gt; </code></p></blockquote>
<p>So it looks like this now.</p>
<p><img class="aligncenter size-full wp-image-851" title="2010-01-05_1438" src="http://enbeeone3.com/wp-content/uploads/2010/01/2010-01-05_1438.png" alt="2010-01-05_1438" width="468" height="67" /></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-5723157920468894";
/* 468x60, created 1/11/10 */
google_ad_slot = "5537328290";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p style="text-align: center;">Pretty sweet right?</p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/automatically-change-your-footer-copyright/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overall Best Open Source CMS of 2009 : Wordpress</title>
		<link>http://enbeeone3.com/overall-best-open-source-cms-of-2009-wordpress</link>
		<comments>http://enbeeone3.com/overall-best-open-source-cms-of-2009-wordpress#comments</comments>
		<pubDate>Tue, 24 Nov 2009 16:57:56 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Social Web]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[cms award]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=570</guid>
		<description><![CDATA[Wordpress Won Best open source CMS Award of the year 2009, This is a landmark for wordpress Community, as it is the first time wordpress won this award, and it marks a shift in the public perception of WordPress, from blog software to full-featured CMS. No small contest, the Open Source CMS Awards received over [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress Won Best open source CMS Award of the year 2009, This is a landmark for wordpress Community, as it is the first time wordpress won this award, and it marks a shift in the public perception of WordPress, from blog software to full-featured CMS. No small contest, the Open Source CMS Awards received over 12,000 nominations and more than 23,000 votes across five categories.</p>
<blockquote><p>We are pleased to announce that WordPress has won the Overall Best Open Source CMS Award in the 2009 Open Source CMS Awards. WordPress has won this Award for the first time in the past four years, earning itself a place in the Hall of Fame category for the Award next year.</p>
<p>While WordPress occupied the top spot in the Overall Award, the other two extremely popular finalists MODx and SilverStripe tied for the first runner up position. After Pixie and Pligg sharing a similar result for the Most Promising CMS category, this is the second time the combined opinion of judges and the public was evenly divided for two CMSes, awarding each of them a first runner up spot.</p>
<p>Here&#8217;s the distribution of the prize fund for this category:</p>
<p><strong>WordPress:</strong> $4,000</p>
<p><strong>MODx:</strong> $2,000</p>
<p><strong>SilverStripe:</strong> $2,000</p>
<p>This final announcement marks the end of the 2009 Open Source CMS Award. The Award continued to be a great success with over 12,000 nominations and over 23,000 votes received across its five categories.</p></blockquote>
<p>In addition to winning in the Overall Best Open Source CMS category, WordPress was named first runner-up in the Best Open Source PHP CMS category. This is significant because wordpress was not even in the top 5 last year, and now wordpress is #2, ahead of Joomla! As is stated on the Award site, “WordPress made its way into the top five for the first time. The fact that it was outranked by Drupal by a very slight margin indicates how popular it has become with users as well as developers over the past year.”</p>
<p>Every day thousands of new people are embracing WordPress to power not just their blogs but entire sites and communities without compromising on usability or scalability (as would be the case with a legacy CMS). Every member of the WordPress community, from core developer to beginning user, should be proud to be part of this momentum: congratulations to us all!</p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/overall-best-open-source-cms-of-2009-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The flag ship website of the U.S. government Went OpenSource !</title>
		<link>http://enbeeone3.com/the-flag-ship-website-of-the-u-s-government-went-opensource</link>
		<comments>http://enbeeone3.com/the-flag-ship-website-of-the-u-s-government-went-opensource#comments</comments>
		<pubDate>Sun, 25 Oct 2009 14:59:48 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[whitehouse]]></category>
		<category><![CDATA[whitehouse.gov]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=545</guid>
		<description><![CDATA[The flag ship website of the U.S. government, Whitehouse.gov, just relaunched on Drupal. This is a big day for Drupal, and for Open Source in government, and something all of us in the community should be very proud of.

First of all, I think Drupal is a perfect match for President Barack Obama&#8217;s push for an [...]]]></description>
			<content:encoded><![CDATA[<p>The flag ship website of the U.S. government, <a href="http://whitehouse.gov/">Whitehouse.gov</a>, just relaunched on Drupal. This is a big day for <a href="http://drupal.org/">Drupal</a>, and for Open Source in government, and something all of us in the community should be very proud of.</p>
<div><img style="border: 1px solid #cccccc; padding: 4px;" src="http://buytaert.net/sites/buytaert.net/files/cache/drupal-whitehouse-gov-500x500.jpg" alt="Whitehouse gov" /></div>
<p>First of all, I think Drupal is a perfect match for President Barack Obama&#8217;s push for an open and transparent government &#8212; Drupal provides a great mix of traditional web content management features and social features that enable open communication and participation. This combination is what we refer to as <em>social publishing</em> and is why so many people use Drupal. Furthermore, I think Drupal is a great fit in terms of President Barack Obama&#8217;s desire to reduce cost and to act quickly. Drupal&#8217;s flexibility and modularity enables organizations to build sites quickly at lower cost than most other systems. In other words, Drupal is a great match for the U.S. government.</p>
<p>Second, this is a clear sign that governments realize that Open Source does not pose additional risks compared to proprietary software, and furthermore, that by moving away from proprietary software, they are not being locked into a particular technology, and that they can benefit from the innovation that is the result of thousands of developers collaborating on Drupal. It takes time to understand these things and to bring this change, so I congratulate the Obama administration for taking such an important leadership role in considering Open Source solutions.</p>
<p>Being one of the world&#8217;s largest consumers of computer software, the U.S. government is not new to Drupal. Several agencies, including the Department of Defense, the Department of Commerce, the Department of Education, and the General Service Administration have been using Drupal, for example. Drupal adoption is growing rapidly within the U.S. government. However, Whitehouse.gov switching to Drupal goes above and beyond any other Drupal installation within the U.S. government, and is a fantastic testament for Drupal and Open Source. It will raise awareness about Drupal across the U.S. government, and across all governments world-wide.</p>
<p>Personally, I&#8217;m thrilled by the idea that Drupal can help governments provide greater transparency, higher velocity, and more flexibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/the-flag-ship-website-of-the-u-s-government-went-opensource/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your own Short URL within your OWN domain! (wordpress Plugin)</title>
		<link>http://enbeeone3.com/your-own-short-url-within-your-own-domain-wordpress-plugin</link>
		<comments>http://enbeeone3.com/your-own-short-url-within-your-own-domain-wordpress-plugin#comments</comments>
		<pubDate>Sat, 24 Oct 2009 06:06:08 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Social Web]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[microurl]]></category>
		<category><![CDATA[shorturl]]></category>
		<category><![CDATA[tinyurl]]></category>
		<category><![CDATA[tweeturl]]></category>
		<category><![CDATA[twitter friendly]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=539</guid>
		<description><![CDATA[Your very own ShortUrl  within your OWN domain! Why visit bit.ly/tinyurl.com and more to get your Post url get shortened??  MicroURL is Wordpress Plugin that can convert your Post URl to Short url  linke &#8220;enbeeone3.com/501 &#8221; Does that sound great??

Feature are listed Below

Easy to setup and configure


Switch between 302 (temporary) and 301 (permanent) redirection


 Lists [...]]]></description>
			<content:encoded><![CDATA[<p>Your very own ShortUrl  within your OWN domain! Why visit bit.ly/tinyurl.com and more to get your Post url get shortened??  MicroURL is Wordpress Plugin that can convert your Post URl to Short url  linke &#8220;enbeeone3.com/501 &#8221; Does that sound great??</p>
<p><img class="size-full wp-image-542 alignright" title="tweeturl" src="http://enbeeone3.com/wp-content/uploads/2009/10/tweeturl.jpg" alt="tweeturl" width="287" height="168" /></p>
<p><strong>Feature are listed Below</strong></p>
<ul>
<li>Easy to setup and configure</li>
</ul>
<ul>
<li>Switch between 302 (temporary) and 301 (permanent) redirection</li>
</ul>
<ul>
<li> Lists all your posts/pages/attachments with short links to each</li>
</ul>
<ul>
<li> Shows the short link in the edit post/page form together with the text you can tweet out (trimmed to 140 characters) and a link to Twitter with the predefined text</li>
</ul>
<ul>
<li> You can output the ShortURl in your themes using the `twitter_link()` function</li>
</ul>
<ul>
<li>New function available: `permalink_to_twitter_link()` which takes a permalink as an argument and returns a Twitter Friendly Link (if exists)</li>
</ul>
<ul>
<li> Compatible with Sociable, Twitter Tools, Tweet This, SexyBookmarks and AskApache Google 404 plugins</li>
</ul>
<ul>
<li> Compatible with WordPress MU and BuddyPress</li>
</ul>
<ul>
<li> Configurable linking relations (HTML and HTTP) for rel=shortlink, and rel=canonical</li>
</ul>
<ul>
<li> Super easy tracking with Google Analytics! Destination links are Taggable!</li>
</ul>
<ul>
<li> You can now switch to alphanumeric links for sexy links with numbers and letters like example.com/s2e7</li>
</ul>
<ul>
<li> More coming up soon!</li>
</ul>
<p style="text-align: left;"><a href="http://enbeeone3.com/wp-content/plugins/microurl.zip"><strong>DOWNLOAD NOW</strong>!</a></p>
<p><img class="alignnone size-full wp-image-543" title="tweeturls" src="http://enbeeone3.com/wp-content/uploads/2009/10/tweeturls.jpg" alt="tweeturls" width="700" height="363" /></p>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/your-own-short-url-within-your-own-domain-wordpress-plugin/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Most Promising Open Source CMS Of 2009</title>
		<link>http://enbeeone3.com/most-promising-open-source-cms-of-2009</link>
		<comments>http://enbeeone3.com/most-promising-open-source-cms-of-2009#comments</comments>
		<pubDate>Sat, 24 Oct 2009 17:21:50 +0000</pubDate>
		<dc:creator>enbeeone3</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Social Web]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[impresscms]]></category>
		<category><![CDATA[manhalo]]></category>
		<category><![CDATA[pixie]]></category>
		<category><![CDATA[pligg]]></category>
		<category><![CDATA[redaxscript]]></category>

		<guid isPermaLink="false">http://enbeeone3.com/?p=537</guid>
		<description><![CDATA[With over 12,000 nominations , most promising open source cms for 2009

ImpressCMS :


ImpressCMS is a community developed Content Management System for easily building and maintaining a dynamic web site. Keep your web site up to date with this easy to use, secure and flexible system.
It is the ideal tool for a wide range of users: [...]]]></description>
			<content:encoded><![CDATA[<p>With over 12,000 nominations , most promising open source cms for 2009</p>
<ul>
<li><a title="ImpressCMS Homepage" href="http://www.impresscms.org/" target="_blank">ImpressCMS</a> :</li>
</ul>
<div>
<blockquote><p>ImpressCMS is a community developed Content Management System for easily building and maintaining a dynamic web site. Keep your web site up to date with this easy to use, secure and flexible system.</p>
<p>It is the ideal tool for a wide range of users: from business to community users, from large enterprises to people who want a simple, easy to use blogging tool. ImpressCMS is a powerful system that gets outstanding results!</p>
<p><a href="http://www.impresscms.org/modules/mastop_publish/?tac=About_ImpressCMS">Read more&#8230;</a></p>
<ul>
<li><a title="Manhali Homepage" href="http://sourceforge.net/projects/manhali/" target="_blank">Manhali</a> :This project was registered on SourceForge.net on Aug 17, 2009, and is described by the project team as follows:Manhali is a free, open source tutorial management system, is installable, multi-language and secure. Manhali is licensed under the GNU-GPL 3; it is written in PHP and uses the MySQL database.</li>
</ul>
<ul>
<li><a title="Pixie Homepage" href="http://www.getpixie.co.uk/" target="_blank">Pixie</a> : Pixie is a free, open source web application that will help you quickly creat your own website.</li>
<li><a title="Pligg Homepage" href="http://www.pligg.com/" target="_blank">Pligg</a> <img src='http://enbeeone3.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ligg is most popular Open Source Digg Clone, Pligg CMS provides <strong>social networking</strong> software that encourages visitors to register on your website so that they can submit content and connect with other users</li>
<li><a title="Redaxscript Homepage" href="http://redaxscript.com/home" target="_blank">Redaxscript</a> :Redaxscript is a free, PHP and MySQL driven content management system for small business and private websites. It&#8217;s extremely lightweight, simple and customizable.</li>
</ul>
</blockquote>
<blockquote><p>Your vote will prove crucial in deciding the winners across all the categories!<a href="http://www.packtpub.com/most-promising-open-source-cms-finalists" target="_blank"> CLICK HERE</a></p></blockquote>
</div>
<h1></h1>
]]></content:encoded>
			<wfw:commentRss>http://enbeeone3.com/most-promising-open-source-cms-of-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
