<?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>TechBytes &#187; Database Prefix</title>
	<atom:link href="http://www.asim.pk/tag/database-prefix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.asim.pk</link>
	<description>Technology Bytes</description>
	<lastBuildDate>Fri, 20 Jan 2012 12:48:54 +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 solve ‘You do not have sufficient permissions to access this page.’ in WordPress</title>
		<link>http://www.asim.pk/2010/04/08/how-to-solve-%e2%80%98you-do-not-have-sufficient-permissions-to-access-this-page-%e2%80%99-in-wordpress/</link>
		<comments>http://www.asim.pk/2010/04/08/how-to-solve-%e2%80%98you-do-not-have-sufficient-permissions-to-access-this-page-%e2%80%99-in-wordpress/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:22:46 +0000</pubDate>
		<dc:creator>Asim Zeeshan</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Database Prefix]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.asim.pk/?p=628</guid>
		<description><![CDATA[I have been getting the following error because I changed the database table prefix You do not have sufficient permissions to access this page. The cause of the problem is that you have changed the database prefixes but still, some &#8230; <a href="http://www.asim.pk/2010/04/08/how-to-solve-%e2%80%98you-do-not-have-sufficient-permissions-to-access-this-page-%e2%80%99-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been getting the following error because I changed the database table prefix</p>
<blockquote><p>You do not have sufficient permissions to access this page.</p></blockquote>
<p>The cause of the problem is that you have changed the database prefixes but still, some of the word press config is tied down to the previous prefix (wp_ or something)</p>
<p>Just execute the following two queries</p>
<pre class="brush: sql; title: ; toolbar: false; notranslate">
-- Replace 'prefix_' with your actual prefix
UPDATE `prefix_usermeta` SET `meta_key` = REPLACE( `meta_key` , 'wp_', 'prefix_' );

-- Replace 'prefix_' with your actual prefix
UPDATE `prefix_options` SET `option_name` = 'prefix_user_roles' WHERE `option_name` ='wp_user_roles' AND `blog_id` =0;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.asim.pk/2010/04/08/how-to-solve-%e2%80%98you-do-not-have-sufficient-permissions-to-access-this-page-%e2%80%99-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

