<?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>kwatog &#187; WordPress</title>
	<atom:link href="http://kwatog.com/category/blog/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://kwatog.com</link>
	<description>tech notes and general nonsense</description>
	<lastBuildDate>Thu, 29 Jul 2010 12:06:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress 404 Page Not Working in IE</title>
		<link>http://kwatog.com/blog/wordpress/wordpress-404-page-not-working-in-ie/</link>
		<comments>http://kwatog.com/blog/wordpress/wordpress-404-page-not-working-in-ie/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 11:40:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=352</guid>
		<description><![CDATA[As stated in the title, my 404 template in WordPress does not show up every time a non-existent URL is accessed in my site. The page works perfectly in FireFox and Chrome, though. So I made a quick search and found that the solution is to add another header information in the page. So here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>As stated in the title, my 404 template in WordPress does not show up every time a non-existent URL is accessed in my site. The page works perfectly in FireFox and Chrome, though. So I made a quick search and found that the solution is to add another header information in the page. So here&#8217;s what to insert at the very start of <strong>404.php</strong>.</p>
<p><code><br />
&lt;?php ob_start(); ?&gt;<br />
&lt;?php header("HTTP/1.1 404 Not Found"); ?&gt;<br />
</code></p>
<p>For this, credit goes to wpcanada.<br />
<a href="http://wpcanada.ca/2008/03/20/ie-and-custom-error-pages/">http://wpcanada.ca/2008/03/20/ie-and-custom-error-pages/</a></p>
<p><span id="more-352"></span><br />
This is also touched in weblogtoolscollection.com at http://weblogtoolscollection.com/archives/2004/07/31/gzip-compression-issue-in-wordpress-12-mingus/</p>
<p>Note: ob_start() is a PHP function Turn on output buffering&#8230; whatever that means. <img src='http://kwatog.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/wordpress-404-page-not-working-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Category Name in WordPress</title>
		<link>http://kwatog.com/blog/wordpress/get-category-name-in-wordpress/</link>
		<comments>http://kwatog.com/blog/wordpress/get-category-name-in-wordpress/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 13:03:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=228</guid>
		<description><![CDATA[This is another super simple and yet super helpful WordPress function that took me a while to find. I&#8217;m currently working on a WP Theme that requires me to show the category name. And I thought it isn&#8217;t right to write an SQL including all the necessary stuffs that comes with querying the database just [...]]]></description>
			<content:encoded><![CDATA[<p>This is another super simple and yet super helpful WordPress function that took me a while to find. I&#8217;m currently working on a <em>WP Theme</em> that requires me to show the category name. And I thought it isn&#8217;t right to write an SQL including all the necessary stuffs that comes with querying the database just to get the category name. There must be a simpler and better way&#8230; and there is! Here&#8217;s the simple code to do just that.</p>
<p><code><br />
 &lt;?php get_cat_name( $cat_id );  ?&gt;<br />
</code></p>
<p>Cool!</p>
<p>Reference: http://codex.wordpress.org/Function_Reference/get_cat_name</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/get-category-name-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress : ‘You do not have sufficient permissions to access this page’</title>
		<link>http://kwatog.com/blog/wordpress/wordpress-you-do-not-have-sufficient-permissions-to-access-this-page/</link>
		<comments>http://kwatog.com/blog/wordpress/wordpress-you-do-not-have-sufficient-permissions-to-access-this-page/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 10:24:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[access this page]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[insufficient permissions]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=175</guid>
		<description><![CDATA[The problem looks like below. You do not have sufficient permissions to access this page The supposed permission problem has occured before and mainly involves plugins. For older version of wordpress, your problem may be solved by one or both of the Change of table prefix - I suggest you visit this to solve that [...]]]></description>
			<content:encoded><![CDATA[<p>The problem looks like below.</p>
<blockquote><p>
You do not have sufficient permissions to access this page
</p></blockquote>
<p>The supposed permission problem has occured before and mainly involves plugins. For older version of wordpress, your problem may be solved by one or both of the </p>
<ul>
<li><strong>Change of table prefix -</strong> I suggest you visit <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/">this</a> to solve that problem. And it also solves a string of other things, too.
</li>
<li><strong>Failed Upgrade -</strong> If you used an automatic upgrade and failed, it is possible that the version number saved in the database is already updated. You can force upgrade it by updating the your version number. Another alternative is by using MarkAquit&#8217;s script <a href="http://markjaquith.wordpress.com/2006/03/28/wordpress-error-you-do-not-have-sufficient-permissions-to-access-this-page/">here</a></li>
</ul>
<p>However, these solutions are only applicable for older versions of WordPress. If you have a clean install, you should not encounter this. That&#8217;s why it didn&#8217;t work and was back to square one of investigation. Upon further checking, it turned out that the problem is related to old plugins. Apparently, there are plugins that was written before the current releases and whose parts of the code is no longer compliant with the current version of WordPress. </p>
<p>Finding the offending plugin is a bit tricky especially if you are using a lot of plugins. Luckily, I only encounter this in a contact page plugin and replace it accordingly with a new plugin which was released lately. The problem with my older plugin is that there&#8217;s no more active development. And so when some of the codes were deprecated, the plugin fails.</p>
<p>So what&#8217;s the problem then? Old Plugins. </p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/wordpress-you-do-not-have-sufficient-permissions-to-access-this-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Upgrade Error(wp-comments)</title>
		<link>http://kwatog.com/blog/wordpress/wordpress-upgrade-errorwp-comments/</link>
		<comments>http://kwatog.com/blog/wordpress/wordpress-upgrade-errorwp-comments/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 17:07:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wp-comments]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=107</guid>
		<description><![CDATA[I&#8217;ve been encountering this for a number of times already and on each time, I had to upgrade WordPress manually(through SSH to make it faster). Now, I was able to partially solve this by removing/renaming the existing upgrade folder under wp-contents. You can follow the steps below. Login to your server via FTP navigate to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been encountering this for a number of times already and on each time, I had to upgrade WordPress manually(through SSH to make it faster). Now, I was able to partially solve this by removing/renaming the existing upgrade folder under wp-contents. You can follow the steps below.</p>
<ol>
<li>Login to your server via FTP</li>
<li>navigate to <strong>wp-contents</strong> folder</li>
<li>rename the existing <strong>upgrade </strong>folder to a new name(you can also choose to delete)</li>
<li>under wp-contents folder, create a new folder named <strong>upgrade</strong></li>
<li>set permission of the new upgrade folder to 666</li>
<li>re-run the upgrade from within wordpress</li>
</ol>
<p><span id="more-107"></span><br />
The one thing that I noticed in this problem is the fact that it only happens on my WordPress installations on VPS. All other sites sitting on a shared cpanel-powered hosting do not encounter this. So there must be something wrong with my VPS configuration. </p>
<p>I&#8217;ll need to find that out because there&#8217;s still one annoying step that needs to be done before upgrading a WP installation. If you have over a dozen sites to update and they are sitting on different servers, it becomes an issue. A one-click solution would be most welcome.</p>
<p>Do you have any idea how I would be able to solve this?</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/wordpress-upgrade-errorwp-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Buying Premium WordPress Theme</title>
		<link>http://kwatog.com/blog/wordpress/buying-premium-wordpress-theme/</link>
		<comments>http://kwatog.com/blog/wordpress/buying-premium-wordpress-theme/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:20:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=86</guid>
		<description><![CDATA[I have been customizing wordpress themes ever since I started using it. I also made several themes from scratch for my websites. Though making a theme from scratch is fulfilling, customizing a freely available template simply makes the process faster. As they say, why do you have to reinvent the wheel? But the problem with [...]]]></description>
			<content:encoded><![CDATA[<p>
I have been customizing wordpress themes ever since I started using it. I also made several themes from scratch for my websites. Though making a theme from scratch is fulfilling, customizing a freely available template simply makes the process faster. As they say, why do you have to reinvent the wheel? But the problem with free templates for use as baseline is that they usually look the same. And most are simply garbage. So what&#8217;s the alternative? Shell out some money for a premium theme.
</p>
<p>
And shell out, I did! But it took time for me to find very affordable set of themes that suits my needs and taste. As most of you know, premium themes cost an arm and a leg. We&#8217;ve seen wordpress templates that costs above $80 apiece and you can only use that in one domain. That&#8217;s the main reason why I shy away from it until I found <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=1705">Elegant Themes</a>. At a price of $19.95 per year, you&#8217;ll be able to download all their current themes plus future releases. I got 17 A+ themes when I signed up and more to come in the coming months. That made the price of each theme a little of $1. That&#8217;s a fraction of the cost my time if I do the coding myself. And their themes are all XHTML/CSS compliant and compatible with major browsers including Opera, Safari and Netscape.
</p>
<p>
What&#8217;s good with <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=1705">Elegant Themes</a> is that they don&#8217;t require you to. However, the themes are not released through GPL. That means you cannot redistribute the themes with your changes. This makes the license of the template incompatible with WordPress template which is released through GPL. But I don&#8217;t really care for now.
</p>
<p><span id="more-86"></span></p>
<p>
Here are some of the themes.
</p>
<p align="center">
<img src="http://kwatog.com/wp-content/uploads/2009/06/basic_eleganttheme.png" alt="basic_eleganttheme" title="basic_eleganttheme" width="250"  class="alignnone size-full wp-image-91" /> <img src="http://kwatog.com/wp-content/uploads/2009/06/egamer_eleganttheme.png" alt="egamer_eleganttheme" title="egamer_eleganttheme" width="250"  class="alignnone size-full wp-image-91" /><br />
<img src="http://kwatog.com/wp-content/uploads/2009/06/grungemag_eleganttheme.png" alt="grungemag_eleganttheme" title="grungemag_eleganttheme" width="250"  class="alignnone size-full wp-image-91" />  <img src="http://kwatog.com/wp-content/uploads/2009/06/studioblue_eleganttheme.png" alt="studioblue_eleganttheme" title="studioblue_eleganttheme" width="250"  class="alignnone size-full wp-image-91" /><br />
<em>From basic to elegant themes</em>
</p>
<p align="center">
<a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=1705_0_1_7" target="_blank"><img src="http://kwatog.com/wp-content/uploads/2009/06/egamer2_eleganttheme.png" alt="egamer2_eleganttheme" title="egamer2_eleganttheme" width="598" height="338" class="alignnone size-full wp-image-91" /></a><br />
<em>I&#8217;ll be using this on my soon to be launched game site</em>
</p>
<p align="center">
<a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=1705_0_1_7" target="_blank"><img border="0" src="http://www.elegantthemes.com/affiliates/banners/468x60.gif" width="468" height="60"></a>
</p>
<h3>Disclosure</h3>
<p>The links to ElegantThemes are affiliate links. If you buy, I&#8217;ll get a small portion.</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/buying-premium-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
