<?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 &#38; co.&#187; WordPress</title>
	<atom:link href="http://kwatog.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://kwatog.com</link>
	<description>tech notes and general nonsense</description>
	<lastBuildDate>Tue, 31 Jan 2012 06:27:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Turn Off eShop Test Mode</title>
		<link>http://kwatog.com/blog/wordpress/how-to-turn-off-eshop-test-mode/</link>
		<comments>http://kwatog.com/blog/wordpress/how-to-turn-off-eshop-test-mode/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 06:27:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[eshop]]></category>
		<category><![CDATA[estore]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[online store]]></category>
		<category><![CDATA[plugins]]></category>
		<guid isPermaLink="false">http://kwatog.com/?p=747</guid>
		<description><![CDATA[If you are using the latest WordPress version (which you should!!!), you&#8217;ll notice that eShop plugin will be perpetually set to Test Mode and there&#8217;s no way to turn it off. There&#8217;s quite a number of suggestions in the official forum at quirm.net but as it turns out, the option is inadvertently hidden. All you [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using the latest WordPress version (which you should!!!), you&#8217;ll notice that eShop plugin will be perpetually set to Test Mode and there&#8217;s no way to turn it off. There&#8217;s quite a number of suggestions in the official forum at quirm.net but as it turns out, the option is inadvertently hidden. All you have to do is to activate the two column mode of the dashboard and you&#8217;ll be able to see the dropdown option.</p>
<p><!-- more --><br />
To be clear, here&#8217;s the screenshot on how to do it.<br />
<strong>Step 1 : </strong> click on 2 in the Number of Columns Screen options.<br />
<a href="http://kwatog.com/wp-content/uploads/2012/01/eshop_turn_off_test_mode_1.jpg"><img src="http://kwatog.com/wp-content/uploads/2012/01/eshop_turn_off_test_mode_1-300x67.jpg" alt="" title="eshop_turn_off_test_mode_1" width="300" height="67" class="alignnone size-medium wp-image-749" /></a><br />
<strong>Step 2 : </strong> Update the status to Live and click on Save.<br />
<a href="http://kwatog.com/wp-content/uploads/2012/01/eshop_turn_off_test_mode_2.jpg"><img src="http://kwatog.com/wp-content/uploads/2012/01/eshop_turn_off_test_mode_2-300x160.jpg" alt="" title="eshop_turn_off_test_mode_2" width="300" height="160" class="alignnone size-medium wp-image-748" /></a></p>
<p>For those looking for it, I know how you feel. I just felt too stupid to not thinking about it. Admittedly, it&#8217;s probably one of the many plugins affected by the latest WordPress enhancements. I bet once rich updated the plugin to conform with the new standard, then it won&#8217;t be a problem anymore. </p>
<p>Source:</p>
<p>http://quirm.net/forum/topic.php?id=4716</p>
<h4>Incoming search terms:</h4><ul><li>eshop test mode</li><li>disable eshop test mode</li><li>disable test mode eshop</li><li>eshop in test mode</li><li>eshop turn off the test mode</li><li>test mode eshop plugin</li></ul>]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/how-to-turn-off-eshop-test-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change WordPress Table Prefix</title>
		<link>http://kwatog.com/blog/wordpress/change-wordpress-table-prefix/</link>
		<comments>http://kwatog.com/blog/wordpress/change-wordpress-table-prefix/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 14:18:27 +0000</pubDate>
		<dc:creator>kwatog</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[prefix]]></category>
		<category><![CDATA[rename]]></category>
		<guid isPermaLink="false">http://kwatog.com/?p=168</guid>
		<description><![CDATA[As part of hardening your WordPress installation, it is recommended that we change the prefix of our WP tables. In that way, the &#8216;bad guys&#8217; and script kiddies will have to guess the name of your tables. Step 1 Suppose that you want mod as your new table prefix, run the following in your phpMyAdmin. [...]]]></description>
			<content:encoded><![CDATA[<p>As part of hardening your WordPress installation, it is recommended that we change the prefix of our WP tables. In that way, the &#8216;bad guys&#8217; and script kiddies will have to guess the name of your tables.</p>
<p><span id="more-168"></span></p>
<h4>Step 1</h4>
<p>Suppose that you want <strong>mod</strong> as your new  table prefix, run the following in your phpMyAdmin.<br />
<code><br />
RENAME TABLE  wp_commentmeta TO mod_commentmeta<br />
             ,wp_comments TO mod_comments<br />
             ,wp_links TO mod_links<br />
             ,wp_options TO mod_options<br />
             ,wp_postmeta TO mod_postmeta<br />
             ,wp_posts TO mod_posts<br />
             ,wp_terms TO mod_terms<br />
             ,wp_term_relationships TO mod_term_relationships<br />
             ,wp_term_taxonomy TO mod_term_taxonomy<br />
             ,wp_usermeta TO mod_usermeta<br />
             ,wp_users TO mod_users;<br />
</code></p>
<h4>Step 2</h4>
<p><code><br />
UPDATE `mod_options`<br />
SET `option_name` = 'mod_user_roles'<br />
WHERE `option_name` ='wp_user_roles'<br />
AND `blog_id` =0;<br />
</code></p>
<h4>Step 3</h4>
<p><code><br />
UPDATE `mod_usermeta`<br />
SET `meta_key` = REPLACE( `meta_key` , 'wp_', 'mod_' )<br />
WHERE option_name LIKE 'wp_%';<br />
</code><br />
The preceding two steps are needed because in the later versions of WordPress, some tables are converted to records. Skipping these two steps will lead to permission error. To be specific, the error is as below.</p>
<blockquote><p>You do not have sufficient permissions to access this page.</p></blockquote>
<p>Hmn&#8230; well, that&#8217;s just it.</p>
<h4>Usual Disclaimer</h4>
<p>Renaming your table doesn&#8217;t mean that you&#8217;ll be safe from the bad guys (otherwise known as &#8216;hackers&#8217;). It&#8217;s just one of the holes to plug and will only help in hardening your installation. However, be aware that there could be other things that can break or compromised. So be vigilant and always install the latest version of WordPress.</p>
<h4>Incoming search terms:</h4><ul><li>table prefix home pl</li><li>wordpress tagged with prefix</li></ul>]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/wordpress/change-wordpress-table-prefix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panglao WP</title>
		<link>http://kwatog.com/wp-themes/panglao-wp/</link>
		<comments>http://kwatog.com/wp-themes/panglao-wp/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 14:32:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WP Themes]]></category>
		<category><![CDATA[cufon]]></category>
		<category><![CDATA[lightword]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://kwatog.com/?p=193</guid>
		<description><![CDATA[It&#8217;s a modified version of the magnificent LightWord template by Andrei Luca More info to follow]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a modified version of the magnificent <a href="http://www.lightword-theme.com/">LightWord</a> template by Andrei Luca </p>
<p>More info to follow</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/wp-themes/panglao-wp/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>
<h4>Incoming search terms:</h4><ul><li>wordpress plugins You do not have sufficient permissions to access this page</li></ul>]]></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>Rename Tables in MySQL</title>
		<link>http://kwatog.com/blog/mysql/rename-tables-in-mysql/</link>
		<comments>http://kwatog.com/blog/mysql/rename-tables-in-mysql/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 02:20:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<guid isPermaLink="false">http://kwatog.com/?p=121</guid>
		<description><![CDATA[If you want to hand code renaming tables, here&#8217;s the sample. Single Table RENAME TABLE wp_users TO kwg_users; multiple tables RENAME TABLE wp_users TO kwtg_users, wp_usermeta TO kwtg_usermeta, wp_site TO kwtg_wpsite, wp_signups TO kwtg_signups; This is handy when renaming a whole lot of tables as in the case of WordPress mu where each blog has [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to hand code renaming tables, here&#8217;s the sample. </p>
<p><strong>Single Table</strong><br />
<code><br />
RENAME TABLE wp_users  TO kwg_users;<br />
</code></p>
<p><strong>multiple tables</strong><br />
<code><br />
RENAME TABLE wp_users  TO kwtg_users,<br />
                     wp_usermeta TO kwtg_usermeta,<br />
                     wp_site TO kwtg_wpsite,<br />
                     wp_signups TO kwtg_signups;<br />
</code></p>
<p>This is handy when renaming a whole lot of tables as in the case of <strong>WordPress mu</strong> where each blog has its own set of tables. If you decide to rename them for security reasons (like you forgot to change the default table prefix during installation), it will be a pain to change them one by one through <strong>phpMyAdmin</strong>.</p>
<h4>Incoming search terms:</h4><ul><li>mysql rename table recursively</li><li>rename multiple tables mysql</li><li>rename table in mysql</li><li>rinomina wp-posts in my sql</li></ul>]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/mysql/rename-tables-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modified WP Table Prefix in bbPress</title>
		<link>http://kwatog.com/blog/uncategorized/modified-wp-table-prefix-in-bbpress/</link>
		<comments>http://kwatog.com/blog/uncategorized/modified-wp-table-prefix-in-bbpress/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 02:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[table prefix]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<guid isPermaLink="false">http://kwatog.com/?p=119</guid>
		<description><![CDATA[If you change your WordPress/WordPress mu table prefix (and thus, renamed the tables too) and you have a bbPress integrated with it, chances are your bbPress will lose its connection with WordPress since the configuration is not in bb-config.php. You&#8217;ll need to update the meta tables, too through mysql or phpmyadmin. Here&#8217;s the update query. [...]]]></description>
			<content:encoded><![CDATA[<p>If you change your WordPress/WordPress mu table prefix (and thus, renamed the tables too) and you have a bbPress integrated with it, chances are your bbPress will lose its connection with WordPress since the configuration is not in bb-config.php. You&#8217;ll need to update the meta tables, too through mysql or phpmyadmin. Here&#8217;s the update query.</p>
<p><code><br />
UPDATE bb_meta<br />
SET meta_value = 'wpmu_'<br />
WHERE meta_key = 'wp_table_prefix';<br />
</code></p>
<p>That&#8217;s of course considering your bbPress table is bb_meta and the new prefix for WordPress/WordPress mu is <strong>wpmu</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/uncategorized/modified-wp-table-prefix-in-bbpress/feed/</wfw:commentRss>
		<slash:comments>1</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>WordPress as Application Framework</title>
		<link>http://kwatog.com/blog/uncategorized/wordpress-as-application-framework/</link>
		<comments>http://kwatog.com/blog/uncategorized/wordpress-as-application-framework/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 08:25:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://kwatog.com/wordpress-as-application-framework/</guid>
		<description><![CDATA[I&#8217;ve been using WordPress for several years now for blog-type publishing but never used it for a full scale CMS. For more complicated sites, I use Joomla. The latter is more powerful, flexible, extensible, scalable and with tons of plugins and templates to choose from. But because Joomla is a full-featured CMS, complexity comes with [...]]]></description>
			<content:encoded><![CDATA[<p>
I&#8217;ve been using WordPress for several years now for blog-type publishing but never used it for a full scale CMS. For more complicated sites, I use Joomla. The latter is more powerful, flexible, extensible, scalable and with tons of plugins and templates to choose from. But because Joomla is a full-featured CMS, complexity comes with it. A lesser mortal like me would take time to implement changes, much less when I try to create application on top of it. On the otherhand, WordPress doesn&#8217;t really consider itself as a CMS platform but instead &#8220;a state-of-the-art publishing platform&#8221;. And since it&#8217;s core purpose is to publish, a lot of people say that it is not scalable among other things which is true.
</p>
<p>But with the rise in popularity of WordPress, it has evolved in a more robust application framework where you can build your application on. It still lacks a lot of features other CMS have but it has all the important ones. It has become an increasingly flexible framework where you can build your application on. And with the help of talented template designers, has moved the presentation of WordPress sites even higher. And despite its improved capabilities, WordPress still managed to maintain improve it&#8217;s uberly simplistic and almost idiot-proof administration interface.
</p>
<p>
I think a post over at graduallythensuddenly.com on <a href="http://graduallythensuddenly.com/2008/05/04/wordpress-drupal-irrelevant/">&#8220;WordPress Makes Drupal Irrelevant&#8221;</a> explains it further. And if you want to make your application adhere to the MVC(model-view-controller) framework, somebody has just explained how to do it over at <a href="http://www.nixonmcinnes.co.uk/2008/04/25/building-micro-web-applications-using-wordpress-pages/">nixonmcinnes.co.uk</a>.
</p>
<p>
And as for me, is it time for me to use WordPress on that web application that I&#8217;ve been postponing for the longest time? You bet, it is! And as a matter of fact, I should have started earlier. Actually, I already migrated one custom-script-powered website into wordpress over the weekend out of necessity.
</p>
<p>But this decision to migrate to WordPress doesn&#8217;t mean I&#8217;ll be dumping Joomla altogether. I&#8217;ll still use Joomla and will still be my choice for full-cms and complex website for the time being. However when it comes simple blogsite to magazine type websites, WordPress is the way. And one of the added indispensable bonus is the ease of administration. It&#8217;s so damn simple, it&#8217;s almost idiot proof.</p>
<h4>Incoming search terms:</h4><ul><li>wordpress application framework</li><li>wordpress as an application framework</li><li>wordpress as application framework</li><li>use wordpress as application framework</li></ul>]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/uncategorized/wordpress-as-application-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!--
Hyper cache file: 1ec19d3c1a50bad35c1ed4ba342222bf
Cache created: 05-02-2012 01:45:08
HCE Version: 0.9.8
Load AVG: 0(5)
-->
