<?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>Ridhuan&#039;s Blog &#187; Blogging Platforms</title>
	<atom:link href="http://www.ridhuan.com/blog/category/blogging-resources/blogging-platforms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ridhuan.com/blog</link>
	<description>Not just another WordPress weblog</description>
	<lastBuildDate>Fri, 03 Sep 2010 16:33:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Change the Date and Time Format for WordPress Blog</title>
		<link>http://www.ridhuan.com/blog/2010/09/how-to-change-the-date-and-time-format-for-wordpress-blog/</link>
		<comments>http://www.ridhuan.com/blog/2010/09/how-to-change-the-date-and-time-format-for-wordpress-blog/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 16:22:50 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=475</guid>
		<description><![CDATA[By default your WordPress blog will display date and time as &#8220;September 3, 2010&#8221; and &#8220;12:59 am&#8220;. When using the default template you can easily change the format by changing the General Settings from your WordPress Admin page. Go to Settings &#62; General and change the settings using the button selections or using the custom [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">By default your WordPress blog will display date and time as &#8220;<em>September 3, 2010</em>&#8221; and &#8220;<em>12:59 am</em>&#8220;. When using the default template you can easily change the format by changing the <strong>General Settings</strong> from your <strong>WordPress Admin</strong> page. Go to <strong>Settings &gt; General</strong> and change the settings using the button selections or using the custom form.</p>
<div id="attachment_483" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2010/09/the_date.jpg"><img class="size-medium wp-image-483" title="the_date" src="http://www.ridhuan.com/blog/wp-content/uploads/2010/09/the_date-300x155.jpg" alt="" width="300" height="155" /></a><p class="wp-caption-text">WordPress Admin General Setting page</p></div>
<p style="text-align: justify;">However most custom themes have been pre-configured and require manual modifications. Open your HTML/PHP editor and search your WordPress theme files for this strings:</p>
<p style="text-align: justify;"><code><span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'F-j-Y'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code> *those in green may be different on your themes.</p>
<p style="text-align: justify;">Change the green codes by referring to this table:</p>
<table border="0" width="80%" align="center">
<tbody>
<tr bgcolor="#ECFFEC">
<td colspan="3">Day of Month</td>
</tr>
<tr>
<td><code>d</code></td>
<td>Numeric with leading zeros</td>
<td>01-31</td>
</tr>
<tr>
<td><code>j</code></td>
<td>Numeric with no leading zeros</td>
<td>1-31</td>
</tr>
<tr>
<td><code>S</code></td>
<td>English ordinal suffix used after j</td>
<td>st, nd, rd, th</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Weekday</td>
</tr>
<tr>
<td><code>l</code></td>
<td>Full name (lowercase L)</td>
<td>Monday-Sunday</td>
</tr>
<tr>
<td><code>D</code></td>
<td>Three letter name</td>
<td>Mon-Sun</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Month</td>
</tr>
<tr>
<td><code>m</code></td>
<td>Numeric with leading zeros</td>
<td>01-12</td>
</tr>
<tr>
<td><code>n</code></td>
<td>Numeric with no leading zeros</td>
<td>1-12</td>
</tr>
<tr>
<td><code>F</code></td>
<td>Textual full</td>
<td>January-December</td>
</tr>
<tr>
<td><code>M</code></td>
<td>Textual three letters</td>
<td>Jan-Dec</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Year</td>
</tr>
<tr>
<td><code>Y</code></td>
<td>Numeric 4 digits</td>
<td>1959, 2010, 2022</td>
</tr>
<tr>
<td><code>y</code></td>
<td>Numeric 2 digits</td>
<td>59, 10, 22</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Time</td>
</tr>
<tr>
<td><code>a</code></td>
<td>Lowercase</td>
<td>am, pm</td>
</tr>
<tr>
<td><code>A</code></td>
<td>Uppercase</td>
<td>AM, PM</td>
</tr>
<tr>
<td><code>g</code></td>
<td>Hour in 12-hours format with no leading zeros</td>
<td>1-12</td>
</tr>
<tr>
<td><code>h</code></td>
<td>Hour in 12-hours format with leading zeros</td>
<td>01-12</td>
</tr>
<tr>
<td><code>G</code></td>
<td>Hour in 24-hours format with no leading zeros</td>
<td>0-23</td>
</tr>
<tr>
<td><code>H</code></td>
<td>Hour in 24-hours format with leading zeros</td>
<td>00-23</td>
</tr>
<tr>
<td><code>i</code></td>
<td>Minutes with leading zeros</td>
<td>00-59</td>
</tr>
<tr>
<td><code>s</code></td>
<td>Seconds with leading zeros</td>
<td>00-59</td>
</tr>
<tr>
<td><code>T</code></td>
<td>Timezone abreviation</td>
<td>EST, MDT, GMT, UTC</td>
</tr>
<tr bgcolor="#ECFFEC">
<td colspan="3">Full Date/Time</td>
</tr>
<tr>
<td><code>c</code></td>
<td>ISO 8601</td>
<td>2004-02-12T15:19:21+00:00</td>
</tr>
<tr>
<td><code>r</code></td>
<td>RFC 2822</td>
<td>Thu, 21 Dec 2000 16:01:07 +0200</td>
</tr>
</tbody>
</table>
<p style="text-align: right;">Table from <a title="Formatting Date and Time" href="http://codex.wordpress.org/Formatting_Date_and_Time" target="_blank">WordPress.Org Codex: Formatting Date and Time</a></p>
<p style="text-align: justify;">Example coding:</p>
<table border="0" width="80%" align="center">
<tbody>
<tr>
<td>September 3rd, 2010</td>
<td><code>F jS, Y</code></td>
</tr>
<tr>
<td>Fri, 03/09/2010</td>
<td><code>D, d/m/Y</code></td>
</tr>
<tr>
<td>Friday, 3-9-2010, 11:10 PM</td>
<td><code>l, j-n-Y, g:i A</code></td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">Example on how to apply the codes to your WordPress themes.</p>
<table border="0" width="100%" align="center">
<tbody>
<tr>
<td>Posted on Friday, September 3rd, 2010</td>
<td><code>Posted on <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'l, F jS, Y'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code></td>
</tr>
<tr>
<td>Written by Ridhuan, 3-9-2010 at 11:15 PM</td>
<td><code>Written by <span style="color: #ff0000;">&lt;?php</span> the_author<span style="color: #0000ff;">()</span> <span style="color: #ff0000;">?&gt;</span>, <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'j-n-Y'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span> at <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'g:i A'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code></td>
</tr>
<tr>
<td>Date Posted: Fri, 03/09/2010, 23:15</td>
<td><code>Date Posted: <span style="color: #ff0000;">&lt;?php</span> the_time<span style="color: #0000ff;">(</span><span style="color: #339966;">'D, d/m/Y, H:i'</span><span style="color: #0000ff;">)</span> <span style="color: #ff0000;">?&gt;</span></code></td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">Actually I have not tried every codes I&#8217;ve written here so I am very sorry if you have problems applying them.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2010/09/how-to-change-the-date-and-time-format-for-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Self-Hosted Open Source Softwares</title>
		<link>http://www.ridhuan.com/blog/2009/05/self-hosted-open-source-softwares/</link>
		<comments>http://www.ridhuan.com/blog/2009/05/self-hosted-open-source-softwares/#comments</comments>
		<pubDate>Mon, 04 May 2009 02:41:37 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Blogging Platforms]]></category>
		<category><![CDATA[blogging software]]></category>
		<category><![CDATA[blogging tools]]></category>
		<category><![CDATA[publishing]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=112</guid>
		<description><![CDATA[The most simple way to publish a website or blogs are by using the open sources software. These software are mostly free and ready for upload at their respective websites. They are also compatible with most of the database and language system of most hosting servers. The software or weblog software is software designed to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The most simple way to publish a website or blogs are by using the open sources software. These software are mostly free and ready for upload at their respective websites. They are also compatible with most of the database and language system of most hosting servers. The software or weblog software is software designed to simplify the creation and maintenance of weblogs. As specialized content management systems, weblog applications support the authoring, editing, and publishing of blog posts and comments, with special functions for image mangagement, web syndication, and moderation of posts and comments. Many weblog applications can be downloaded and installed on user systems. Some of these are provided under free-software and open-source licenses, allowing them to used, modified, and redistributed freely. Others are proprietary software which must be licensed for a fee, although free-of-charge versions may also be available. Other weblog applications are offered only through their developers&#8217; hosts, either free of charge or for a fee. Services are typically limited to hosting of the blog itself, but some services offer the option of using the hosted software to update a blog published elsewhere. Listed here are the common open source software either for blogging, forums, or publishing a picture gallery that can be installed in most hosting server using the Fantastico Autoinstaller. The auto installer is widely used and available with almost all hosting servers worldwide. The auto installer can automatically configures all these software in the hosting server with a nice and friendly user interface. These softwares can also be installed manually but can be difficult for those who are not good with server&#8217;s terms such as php, mysql, etc.</p>
<p style="text-align: justify;">Recommended Paid Hosting Server: <a title="SiteGround" onclick="this.href='http://www.siteground.com/index.htm?referrerid=117325'" rel="nofollow" href="http://www.siteground.com/" target="_blank">SiteGround</a></p>
<p style="text-align: justify;">Recommended Free Hosting Server: <a title="000webhost" onclick="this.href='http://www.000webhost.com/70878.html'" rel="nofollow" href="http://www.000webhost.com/" target="_blank">000webhost</a></p>
<div id="attachment_114" class="wp-caption aligncenter" style="width: 260px"><a title="WordPress" rel="nofollow" href="http://www.wordpress.org/" target="_blank"><img class="size-full wp-image-114" title="Wordpress" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/Wordpress-logo.png" alt="WordPress" width="250" height="57" /></a><p class="wp-caption-text">WordPress</p></div>
<p style="text-align: justify;">WordPress is a blog script and a personal publishing tool with focus on aesthetics and featuring cross-blog tool, password protected posts, importing, typographical niceties, multiple authors, bookmarklets. WordPress has a templating system, which includes widgets that can be rearranged without editing PHP or HTML code, as well as themes that can be installed and switched between. The PHP and HTML code in themes can also be edited for more advanced customizations. WordPress also features integrated link management; a search engine-friendly, clean permalink structure; the ability to assign nested, multiple categories to articles; multiple author capability; and support for tagging of posts and articles. Automatic filters that provide for proper formatting and styling of text in articles (for example, converting regular quotes to smart quotes) are also included. WordPress also supports the Trackback and Pingback standards for displaying links to other sites that have themselves linked to a post or article. Finally, WordPress has a rich plugin architecture which allows users and developers to extend its functionality beyond the features that come as part of the base install.</p>
<p style="text-align: justify;">Homepage: <a title="WordPress" rel="nofollow" href="http://www.wordpress.org/" target="_blank">http://www.wordpress.org/</a></p>
<div id="attachment_115" class="wp-caption aligncenter" style="width: 165px"><a title="b2evolution" rel="nofollow" href="http://www.b2evolution.net/" target="_blank"><img class="size-full wp-image-115 " title="b2evolution_logo" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/b2evolution_logo.jpg" alt="b2evolution" width="155" height="77" /></a><p class="wp-caption-text">b2evolution</p></div>
<p style="text-align: justify;">b2evolution is a blog script featuring multiple blogs, categories/sub-categories, skins, search function, multiple languages, search engines friendly URLs. b2evolution is a multi-lingual, multi-user, multi-blog publishing system written in PHP and backed by a MySQL database. It is distributed under the GNU General Public License and is available without charge. François Planque forked b2evolution from version 0.6.1 of b2\cafelog in 2003. Another popular fork of b2 is WordPress. b2evolution is focused on ease of installation and feature richness. It can easily be installed on almost any LAMP (Linux, Apache, MySQL, PHP) host in a matter of minutes. With the latest release, no configuration file editing is necessary, as all configuration is handled through the installer or administrative back-end. One of the main differentiating features of b2evolution is its ability to manage multiple blogs under a single installation.</p>
<p style="text-align: justify;">Homepage: <a title="b2evolution.net" rel="nofollow" href="http://www.b2evolution.net/" target="_blank">http://www.b2evolution.net/</a></p>
<div id="attachment_116" class="wp-caption aligncenter" style="width: 360px"><a title="Joomla!" rel="nofollow" href="http://www.joomla.org/" target="_blank"><img class="size-full wp-image-116" title="auto_joomla" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/auto_joomla.gif" alt="Joomla!" width="350" height="89" /></a><p class="wp-caption-text">Joomla!</p></div>
<p style="text-align: justify;">Joomla! is one of the most powerful Open Source Content Management Systems on the planet. It is used all over the world for everything from simple websites to complex corporate applications. Joomla! is easy to install, simple to manage, and reliable. Joomla! is a free open source content management system for publishing content on the World Wide Web and intranets as well as a Model–view–controller (MVC) Web Application Development framework. The system includes features such as page caching to improve performance, RSS feeds, printable versions of pages, news flashes, blogs, polls, website searching, and language internationalization. Joomla is licensed under the GPL, and is the result of a fork of Mambo. It is written in the PHP programming language and uses the MySQL database. There are over 3,500 extensions for Joomla! available via the Extensions Directory.</p>
<p style="text-align: justify;">Homepage: <a title="Joomla!" rel="nofollow" href="http://www.joomla.org/" target="_blank">http://www.joomla.org/</a></p>
<div id="attachment_117" class="wp-caption aligncenter" style="width: 274px"><a title="Drupal" rel="nofollow" href="http://www.drupal.org/" target="_blank"><img class="size-full wp-image-117" title="drupal_logo" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/drupal_logo.png" alt="Drupal" width="264" height="84" /></a><p class="wp-caption-text">Drupal</p></div>
<p style="text-align: justify;">Drupal is an advanced portal with collaborative book, search engines friendly URLs, online help, roles, full content search, site watching, threaded comments, version control, blogging, news aggregator. Drupal is a free and open source modular framework and Content Management System (CMS) written in PHP. It is used as a &#8220;back end&#8221; system for many different types of websites, ranging from small personal blogs to large corporate and political sites. The standard release of Drupal, known as &#8220;Drupal core&#8221;, contains basic features common to most CMSs. These include the ability to register and maintain individual user accounts, administration menus, RSS-feeds, customizable layout, flexible account privileges, logging, a blogging system, an Internet forum, and options to create a classic &#8220;brochureware&#8221; website or an interactive community website. Drupal was also designed to allow new features and custom behavior to be added by third parties. For this reason, Drupal is sometimes described as a &#8220;Content Management Framework&#8221;. Although Drupal offers a sophisticated programming interface for developers, no programming skills are required for basic website installation and administration. Drupal can run on any computing platform that supports a web server capable of running PHP (version 4.3.5+), including Apache, IIS, Lighttpd, and nginx and a database, such as MySQL or PostgreSQL, to store content and settings.</p>
<p style="text-align: justify;">Homepage: <a title="Drupal" rel="nofollow" href="http://www.drupal.org/" target="_blank">http://www.drupal.org/</a></p>
<div id="attachment_118" class="wp-caption aligncenter" style="width: 272px"><a title="phpWebsite" rel="nofollow" href="http://phpwebsite.appstate.edu/" target="_blank"><img class="size-full wp-image-118" title="auto_phpwebsite" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/auto_phpwebsite.gif" alt="phpWebsite" width="262" height="80" /></a><p class="wp-caption-text">phpWebsite</p></div>
<p style="text-align: justify;">phpWebSite is a very powerful Content Management System with document manager, announcements, menu manager, photo album, block maker, FAQ, web pages maker, polls, information categorizer, calendar, link manager, form generator.</p>
<p style="text-align: justify;">Homepage: <a title="phpwebsite" rel="nofollow" href="http://phpwebsite.appstate.edu/" target="_blank">http://phpwebsite.appstate.edu/</a></p>
<div id="attachment_120" class="wp-caption aligncenter" style="width: 210px"><a title="phpBB" rel="nofollow" href="http://www.phpbb.com/" target="_blank"><img class="size-full wp-image-120" title="auto_phpbb" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/auto_phpbb.gif" alt="phpBB" width="200" height="91" /></a><p class="wp-caption-text">phpBB</p></div>
<p style="text-align: justify;">phpBB is a widely-popular open-source bulletin-board package, works well, simple user interface and admin panel, clean look, scales well, and can be customized. phpBB is a popular Internet forum package written in the PHP scripting language. The name &#8220;phpBB&#8221; is an abbreviation of PHP Bulletin Board. Available under the GNU General Public License, phpBB is free software.</p>
<p style="text-align: justify;">Homepage: <a title="phpBB" rel="nofollow" href="http://www.phpbb.com/" target="_blank">http://www.phpbb.com/</a></p>
<div id="attachment_121" class="wp-caption aligncenter" style="width: 210px"><a title="SMF" rel="nofollow" href="http://www.simplemachines.org/" target="_blank"><img class="size-full wp-image-121" title="Simplemachines" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/Simplemachines.png" alt="Simple Machines Forum" width="200" height="46" /></a><p class="wp-caption-text">Simple Machines Forum</p></div>
<p style="text-align: justify;">SMF (Simple Machines Forum) Elegant. Effective. Powerful. Free. SMF is all of the above. SMF is a next-generation community software package and is jam-packed with features, while at the same time having a minimal impact on resources. SMF is a freeware Internet forum application. The software is written in PHP and uses a MySQL database backend, although multi-database support is being developed for version 2.0. SMF is developed by the Simple Machines development team.</p>
<p style="text-align: justify;">Homepage: <a title="Simplemachines" rel="nofollow" href="http://www.simplemachines.org/" target="_blank">http://www.simplemachines.org/</a></p>
<div id="attachment_122" class="wp-caption aligncenter" style="width: 286px"><a title="Coppermine" rel="nofollow" href="http://coppermine.sourceforge.net/" target="_blank"><img class="size-full wp-image-122" title="coppermine_logo" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/05/coppermine_logo.png" alt="Coppermine" width="276" height="80" /></a><p class="wp-caption-text">Coppermine</p></div>
<p style="text-align: justify;">Coppermine is an Image Gallery system featuring categories and albums, thumbnails and intermediate size pics, search feature, new and random pictures, user management (private galleries, groups), user comments, e-cards feature, slideshow viewer. It requires PHP, MySQL, and ImageMagick or the GD Graphics Library, and works with most web server software such as Apache. Coppermine Photo Gallery has interfaces with many popular software packages, including e107, Invision Power Board, Joomla!, Mambo, phpBB, PostNuke, PunBB, Simple Machines Forum, vBulletin, Woltlab Burning Board, and YaBB SE.</p>
<p style="text-align: justify;">Homepage: <a title="Coppermine" rel="nofollow" href="http://coppermine.sourceforge.net/" target="_blank">http://coppermine.sourceforge.net/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2009/05/self-hosted-open-source-softwares/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Editing and Organizing WordPress Category Slugs</title>
		<link>http://www.ridhuan.com/blog/2009/04/editing-and-organizing-wordpress-category-slugs/</link>
		<comments>http://www.ridhuan.com/blog/2009/04/editing-and-organizing-wordpress-category-slugs/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 09:42:58 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[category slugs]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=96</guid>
		<description><![CDATA[In WordPress 2.7, when editing the categories or converting a category to a sub-category, the slugs will automatically replaced in a way you won&#8217;t really favor. For example, when you have a category &#8216;WordPress&#8217; with the initial slug is &#8216;wordpress&#8216; and you want to move it into a parent category &#8216;Blogging&#8217;, the category slug for [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In WordPress 2.7, when editing the categories or converting a category to a sub-category, the slugs will automatically replaced in a way you won&#8217;t really favor. For example, when you have a category &#8216;WordPress&#8217; with the initial slug is &#8216;<code>wordpress</code>&#8216; and you want to move it into a parent category &#8216;Blogging&#8217;, the category slug for the &#8216;WordPress&#8217; category will automatically replaced as &#8216;<code>blogging-wordpress</code>&#8216; instead of &#8216;<code>wordpress</code>&#8216;. The structure will become:</p>
<p style="text-align: justify;"><code>yoursite.com/category/blogging/blogging-wordpress/</code></p>
<p style="text-align: justify;">instead of</p>
<p style="text-align: justify;"><code>yoursite.com/category/blogging/wordpress/</code></p>
<p style="text-align: justify;">The reason for this is because the initial slug was already in the WordPress database and converting any category to a sub-category will be as same as creating a new category. The database will not overwrite the existing slug but will create a new one. Similar problem will occur if you try to rename a category to a name you had deleted previously. Browsing in the WordPress Support Forum, I still can&#8217;t find any solution for this therefore I&#8217;ve decided to try on my own. Thank God I manage to find a solution but still required quite a messy job if you are not familiar with the database system of your hosting server.</p>
<p style="text-align: justify;">Here&#8217;s what I did to fix all the category slugs:</p>
<ol>
<li>Login to your hosting server account.</li>
<li>Open the MyPhpAdmin (or phpMyAdmin or anything with similar function).</li>
<li>When the list of tables had been listed, look out for the <code>wp_terms</code> table. (note that I&#8217;m using the standard <code>wp_</code> table prefix).</li>
<li>Delete the terms and slugs that are not in use. Make sure you check the ID for every <strong>Posts Categories</strong> and <strong>Link Categories</strong> because everything are in the same table. To ease the job, I just clear or delete the table database. Just be careful not to delete all other table database. Just clear the <code>wp_terms</code> table database. Note that If you delete everything in the table, you have to know which ID represent your Posts Categories and which are for Link Categories because you&#8217;ll have to rebuild them again.</li>
<li>Also edit the <code>wp_terms_taxonomy</code> which contains the hierarchical data of your categories. If you don&#8217;t edit this table, some new categories might be automatically become sub-categories based on previous data. My version allow me to delete all post categories and tags data in this table because they will be generated again when creating new category in the WordPress admin page. Just don&#8217;t delete the <code>link_category</code> term or clear everything in this table because this will bring hell to you. I did this mistake earlier and I won&#8217;t help if you did the same mistake.</li>
<li>After clearing the database, all the categories in you blog will be removed. Just go to the Categories section and create a new category. Just start all over again. This time make sure you plan every categories nicely to avoid any mistake. If you did make a mistake. Just repeat the steps mentioned above.</li>
</ol>
<p style="text-align: justify;">The method worked fine for me and I know there are many people are having the same problem. Please give me your feedback for this.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2009/04/editing-and-organizing-wordpress-category-slugs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Problems with GrungeMag Theme were Solved</title>
		<link>http://www.ridhuan.com/blog/2009/04/problems-with-grungemag-theme-were-solved/</link>
		<comments>http://www.ridhuan.com/blog/2009/04/problems-with-grungemag-theme-were-solved/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 10:20:56 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=76</guid>
		<description><![CDATA[Since switching to the GrungeMag theme about two weeks ago, I&#8217;ve been having a problem where the category menu is not working. The theme use Superfish style menu which is very awesome but not until today the category menu is working nicely in this blog. GrungeMag by Elegant Themes is very beautiful but there are [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Since switching to the GrungeMag theme about two weeks ago, I&#8217;ve been having a problem where the category menu is not working. The theme use Superfish style menu which is very awesome but not until today the category menu is working nicely in this blog. GrungeMag by <a title="Elegant Themes" rel="nofollow" href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=1293" target="_blank">Elegant Themes</a> is very beautiful but there are some fixes required to make it work properly maybe to the newer version of WordPress. I&#8217;m using WordPress 2.7.1 and as I surfed the WordPress Codex pages, I noticed that this template is still using some codes that has been deprecated in newer version of WordPress but I don&#8217;t know since when. Right after installing the theme, 2 problems arised which were:</p>
<ol>
<li>The XML Parsing Error for the feeds, and</li>
<li>The category menu is not working where no categories were listed.</li>
</ol>
<p style="text-align: justify;">For the RSS Feed problems, the solution is to remove any blank lines outside of &lt;?&#8230;..?&gt; tags. &#8220;Any&#8221; in this case does not really means &#8220;any&#8221; because some spaces are required as the theme&#8217;s formatting. When using the previous theme, I manage to fix this problem by browsing the source codes and remove all blank lines in <code>wp-rss2.php</code>, <code>wp-atom.php</code>, <code>wp-config.php</code>, and theme&#8217;s <code>functions.php</code> as suggested by <a title="FEED Validator" rel="nofollow" href="http://feedvalidator.org/docs/error/WPBlankLine.html" target="_blank">feedvalidator.org</a>. However, for the GrungeMag theme, this method could not fix the problem because there were more blank lines that what I can find. The solution is by using a plugin called <a title="Fix RSS Feed" rel="nofollow" href="http://www.flyaga.info/en/wordpress/plugins/fix-rss-feed-error-wordpress-plugins.htm" target="_blank">Fix Rss Feed</a> that will scan all files in your WordPress folder and automatically remove all blank lines that might cause the problem. Unfortunately you&#8217;ll have to CHMOD your files to 777 in order to allow the plugin to fix the problem. Quite a lot of job to CHMOD the file to 777 and then back to their original permission setting.</p>
<p style="text-align: justify;">For the category meny problem, I&#8217;ve already knew that there must be something in the source code that have to be fixed to make it work. Said to myself &#8220;<em>The main menu is working fine but why not the category menu?</em>&#8220;. I&#8217;ve analysed the source codes several times and made some try-and-error because I&#8217;m not really good with PHP coding. After looking at some forum posts, I thought this might be because the theme used <a title="wp_list_cats" rel="nofollow" href="http://codex.wordpress.org/Template_Tags/wp_list_cats" target="_blank"><code>wp_list_cats()</code></a> tag which is now being replaced with <a title="wp_list_categories" rel="nofollow" href="http://codex.wordpress.org/Template_Tags/wp_list_categories" target="_blank"><code>wp_list_categories()</code></a> tag. Actually for this theme both tags are working but both will require different arguments to function properly for the menu category. The real problem was in the argument.</p>
<p style="text-align: justify;">Initial argument setting for the code:</p>
<p><code style="text-align: left;"><span style="color: #c0c0c0;">&lt;!--Begin Categories Navigation Bar--&gt;</span><br />
<span style="color: #000080;">&lt;div id=</span><span style="color: #0000ff;">"categories"</span><span style="color: #000080;">&gt;</span><br />
<span style="color: #000080;">&lt;ul class=<span style="color: #0000ff;">"</span></span><span style="color: #0000ff;">nav superfish"</span><span style="color: #000080;">&gt;</span><span style="color: #ff0000;">&lt;?php</span> <span style="color: #000000;">wp_list_cats</span><span style="color: #000080;">(</span><span style="color: #800000;">"sort_column=name&amp;optioncount=0&amp;depth=2&amp;exclude=$artsee_exclude_cat;"</span><span style="color: #000080;">);</span> <span style="color: #ff0000;">?&gt;</span><span style="color: #000080;">&lt;/ul&gt;</span><br />
<span style="color: #000080;">&lt;/div&gt;</span><br />
<span style="color: #c0c0c0;">&lt;!--End category navigation--&gt;</span></code></p>
<p style="text-align: justify;">Working argument setting for the code:</p>
<p><code style="text-align: left;"><span style="color: #c0c0c0;">&lt;!--Begin Categories Navigation Bar--&gt;</span><br />
<span style="color: #000080;">&lt;div id=</span><span style="color: #0000ff;">"categories"</span><span style="color: #000080;">&gt;</span><br />
<span style="color: #000080;">&lt;ul class=</span><span style="color: #0000ff;">"nav superfish"</span><span style="color: #000080;">&gt;</span><span style="color: #ff0000;">&lt;?php</span> <span style="color: #000000;">wp_list_cats</span><span style="color: #000080;">(</span><span style="color: #800000;">"sort_column=name&amp;optioncount=0&amp;depth=2;"</span><span style="color: #000080;">);</span> <span style="color: #ff0000;">?&gt;</span><span style="color: #000080;">&lt;/ul&gt;</span><br />
<span style="color: #000080;">&lt;/div&gt;</span><br />
<span style="color: #c0c0c0;">&lt;!--End category navigation--&gt;</span></code></p>
<p style="text-align: justify;">The exclude=xxxx argument is used in the menu category and working fine but I don&#8217;t know why it is not working in for the category menu. Maybe I can tell later after my knowledge about PHP is getting better or if any of you know why, please share it in the comment box. Hope this information is helpful.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2009/04/problems-with-grungemag-theme-were-solved/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WordPress and Spam</title>
		<link>http://www.ridhuan.com/blog/2009/04/wordpress-and-spam/</link>
		<comments>http://www.ridhuan.com/blog/2009/04/wordpress-and-spam/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 16:49:10 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[spams]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=45</guid>
		<description><![CDATA[Since I used both Blogger and WordPress, I&#8217;ve noticed that WordPress does have a lot of spammers. I&#8217;ve been using Blogger from last year and some of my blogs does have a steady amount of visitors per day. I did received spam comments to some of my articles in the Blogger blogs but I knew [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Since I used both Blogger and WordPress, I&#8217;ve noticed that WordPress does have a lot of spammers. I&#8217;ve been using Blogger from last year and some of my blogs does have a steady amount of visitors per day. I did received spam comments to some of my articles in the Blogger blogs but I knew those were human generated. Some people had made a comment template where he/she will just copy and paste the same sentence on any page. I&#8217;ll classify these as spam when I received the same thing twice and if the sentence is nothing related to my articles. You might have met something like &#8220;<em>Hi, your blog is bla.. bla.. and every nice words</em>&#8221; with link back to their blogs but the comment is nothing related to your blog or the article. What would you think of these? They just copy and paste like we can&#8217;t read.</p>
<p style="text-align: justify;">OK back to the main topic, since using WordPress I&#8217;ve been having a lot of bot generated spam comments. These are spams with nothing you can understand except the included links. There are at least 2 of them everyday eventhough this blog is still not reached a month old. Maybe this is why Akismet is so important to WordPress blogs. I had never received of these bot generated spams in my Blogger blogs and I wonder why. Is it because of Google&#8217;s or Blogger&#8217;s protection system? or because we don&#8217;t have to use capcha to write comments in WordPress blogs? At first I&#8217;m very satisfied with Akismet spam protection but from time to time there are more spam comments that can get through the Akismet filter. A friend suggested the Math Comment Spam Protection and I am just trying to use it. Still not sure if it will satisfy my need but I will try to update later.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2009/04/wordpress-and-spam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Answer to Joomla 1.5.9 Front-End Login Problem</title>
		<link>http://www.ridhuan.com/blog/2009/03/answer-to-joomla-1-5-9-front-end-login-problem/</link>
		<comments>http://www.ridhuan.com/blog/2009/03/answer-to-joomla-1-5-9-front-end-login-problem/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 09:05:03 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomla login]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=20</guid>
		<description><![CDATA[If you have just installed Joomla and placed the login form on the homepage, you or your visitors might have problem to login to their account. I have found out why users can&#8217;t login using the login form of the homepage of Ridhuan.co.cc. It&#8217;s probably because of the security setting of the login form. I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If you have just installed Joomla and placed the login form on the homepage, you or your visitors might have problem to login to their account. I have found out why users can&#8217;t login using the login form of the homepage of Ridhuan.co.cc. It&#8217;s probably because of the security setting of the login form. I didn&#8217;t notice previously that everytime I pushed the login button, the page is redirected to <code><strong><span style="color: #339966;">https</span></strong>://ridhuan.co.cc/index.php</code>. My server might not support secure connection therefore the page cannot be loaded. If you&#8217;re experiencing the same problem, try check out the <strong>mod_login</strong> module in the Module Manager.</p>
<p>Try this:</p>
<ol>
<li>Go to the <strong>Module Manager</strong></li>
<li>Edit the <strong>mod_login</strong> module</li>
<li>In the <strong>Module Parameters</strong> section, select <strong>No</strong> for <strong>Encrypt Login Form</strong> option.</li>
</ol>
<div id="attachment_23" class="wp-caption aligncenter" style="width: 297px"><a href="http://www.ridhuan.com/blog/wp-content/uploads/2009/03/modlogin.png"><img class="size-full wp-image-23" title="modlogin" src="http://www.ridhuan.com/blog/wp-content/uploads/2009/03/modlogin.png" alt="modlogin" width="287" height="123" /></a><p class="wp-caption-text">mod_login</p></div>
<p style="text-align: justify;">I hope this would help. If you&#8217;re still experiencing the problem, check out <a title="Joomla Forum" rel="nofollow" href="http://forum.joomla.org/" target="_blank">Joomla Forum</a> because it probably not because of the secure connection capability of your server.</p>
<p style="text-align: justify;">If the problem is settled after trying my suggestion, don&#8217;t try to change your site setting to use SSL in the Global Configuration&gt;Server&gt;Force SSL. With force SSL, your site will be using https and you might not be able to login to administration page to remove the setting if your server does not offer SSL. The only way to revert back is by editing the configuration.php file.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2009/03/answer-to-joomla-1-5-9-front-end-login-problem/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Joomla 1.5.9 SEO Friendly URL Solution</title>
		<link>http://www.ridhuan.com/blog/2009/03/joomla-1-5-9-seo-friendly-url-solution/</link>
		<comments>http://www.ridhuan.com/blog/2009/03/joomla-1-5-9-seo-friendly-url-solution/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 18:30:42 +0000</pubDate>
		<dc:creator>Ridhuan</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomla seo url]]></category>

		<guid isPermaLink="false">http://www.ridhuan.com/blog/?p=13</guid>
		<description><![CDATA[Since installing Joomla and WordPress in my server about 2 weeks ago, I&#8217;m having the problem where SEO friendly URL for the Joomla site is not working. If you don&#8217;t understand this, here&#8217;s an example: Non-SEO friendly URL: http://www.ridhuan.com/index.php?option=com_content&#38;view=section&#38;id=3&#38;Itemid=4 SEO friendly version: http://www.ridhuan.com/categoryname/articlename Finally I&#8217;ve found why Joomla 1.5.9 SEO Friendly URL doesn&#8217;t work. It [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Since installing Joomla and WordPress in my server about 2 weeks ago, I&#8217;m having the problem where SEO friendly URL for the Joomla site is not working. If you don&#8217;t understand this, here&#8217;s an example:</p>
<p style="text-align: left;">Non-SEO friendly URL: <code><strong><span style="color: #0000ff;">http://www.ridhuan.com/index.php?option=com_content&amp;view=section&amp;id=3&amp;Itemid=4</span></strong></code></p>
<p style="text-align: left;">SEO friendly version: <code><strong><span style="color: #0000ff;">http://www.ridhuan.com/categoryname/articlename</span></strong></code></p>
<p style="text-align: justify;">Finally I&#8217;ve found why Joomla 1.5.9 SEO Friendly URL doesn&#8217;t work. It is in the <code><strong><span style="color: #339966;">.htaccess</span></strong></code> file.</p>
<p style="text-align: justify;">Replace:</p>
<p><code><strong><span style="color: #0000ff;">RewriteRule (.*) index.php</span></strong></code></p>
<p>in <code><span style="color: #339966;"><strong>.htaccess</strong></span></code> file with</p>
<p><code><strong><span style="color: #0000ff;">RewriteRule (.*) /index.php</span></strong></code></p>
<p style="text-align: justify;">and the SEO friendly URL should work fine. You must already turn on the <code><strong><span style="color: #339966;">Apache mod_rewrite</span></strong></code>. I&#8217;m not sure if this solution can be applied for other version than Joomla 1.5.9 as I&#8217;m using. I&#8217;m also using the latest MySQL, PHP, and Apache version therefore if the solution does not work for you, try check out you version and contact you hosting server.</p>
<p style="text-align: justify;">I&#8217;m still having a problem with the site&#8217;s login module. Users cannot login to the site using the login form but new users can register without any problem. Unless this problem has been settled, I just can&#8217;t start to write any good article to the site. Maybe because of my nature where everything has to work fine before I can start doing my job. I&#8217;ve searched for the solution in the Joomla forum and still waiting for some solution.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ridhuan.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.ridhuan.com/blog/2009/03/joomla-1-5-9-seo-friendly-url-solution/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
