<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Tips and Tricks HQ Forum &#187; Topic: Products and Customers lost (but not Settings) after moving from local PC</title>
		<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc</link>
		<description>Support Forum for Tips and Tricks HQ Products</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 06:12:32 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.tipsandtricks-hq.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.tipsandtricks-hq.com/forum/rss/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc" rel="self" type="application/rss+xml" />

		<item>
			<title>amin007 on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5356</link>
			<pubDate>Fri, 25 Jun 2010 01:37:44 +0000</pubDate>
			<dc:creator>amin007</dc:creator>
			<guid isPermaLink="false">5356@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;I thought anyone working with database tables should have this simple knowledge:&#60;/p&#62;
&#60;p&#62;For example, you have 3 tables in your WordPress database: &#60;/p&#62;
&#60;p&#62;Table1 - holds record of Apples&#60;br /&#62;
Table2 - holds record of Oranges&#60;br /&#62;
Table3 - holds record of Mangoes&#60;/p&#62;
&#60;p&#62;Now, when you move this WordPress database you only move table1 and table2 to your new server. Are you going to have access to the data stored in table3? No! because you didn't transfer it. Thats exactly what is happening in this case.&#60;/p&#62;
&#60;p&#62;WordPress has 11 core database tables that it creates at installation time. The tables are:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_terms
wp_term_relationships
wp_term_taxonomy
wp_usermeta
wp_users&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;WordPress lets the plugin developers store their plugin's settings data inside the table called &#34;wp_options&#34;. Now, how will a plugin store other data for example product data? WordPress says create a table inside the WordPress database and store it. So the eStore creates a table inside the wpdb with the following name:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;wp_wp_eStore_tbl&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This is where all the product data is stored.&#60;/p&#62;
&#60;p&#62;When you transfer your server you are suppose to transfer every table inside your WordPress database (this includes the 11 core WordPress tables and any other tables created by other plugins). &#60;/p&#62;
&#60;p&#62;What you are doing is only transferring the 11 core WordPress tables and leaving the other tables created by the plugin behind and asking me why the data is not on the new server! The settings data is there because it was stored in the &#34;wp_options&#34; table which you didn't forget to transfer.&#60;/p&#62;
&#60;p&#62;Let me know if it makes sense.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rogersmj on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5350</link>
			<pubDate>Thu, 24 Jun 2010 13:52:09 +0000</pubDate>
			<dc:creator>rogersmj</dc:creator>
			<guid isPermaLink="false">5350@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;OK, but how about an actual answer as to why this happens? We frequently have to move sites because we don't develop in a production environment, and we've found both eStore and eMember seem to forget all of our categories, products, etc whenever we import the MySQL database to another server. This seriously hampers our development cycle and we won't be buying any more licenses until this is fixed.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wpCommerce on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5279</link>
			<pubDate>Tue, 22 Jun 2010 01:58:41 +0000</pubDate>
			<dc:creator>wpCommerce</dc:creator>
			<guid isPermaLink="false">5279@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Settings data are stored in the main WordPress database but products and customer records are not. The products and customer records are stored in a table that is created by eStore which sits inside your wordpress database. So after moving your database the settings were still there because you only moved the core database tables and not all the tables.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>anotherbreed on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5275</link>
			<pubDate>Mon, 21 Jun 2010 20:20:28 +0000</pubDate>
			<dc:creator>anotherbreed</dc:creator>
			<guid isPermaLink="false">5275@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Yeah I understand, but I don't get how it can recall settings data even if I deleted all eStore database tables! Or why it didn't read (and save new) products data already present in the database displaying me no products in the Wordpress admin panel.&#60;/p&#62;
&#60;p&#62;Maybe is there an other place where it saves those informations?&#60;/p&#62;
&#60;p&#62;P.S.: I already solved my problem by adding everything again, but I'm interested in this discussion.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amin007 on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5264</link>
			<pubDate>Mon, 21 Jun 2010 00:47:50 +0000</pubDate>
			<dc:creator>amin007</dc:creator>
			<guid isPermaLink="false">5264@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;All the data is stored in the database and do not get deleted when you deactivate the plugin. This is to protect your data. Imagine what would happen if you mistakenly deactivated the plugin with thousands of products already configured!! This also make the plugin upgrade smooth as you don't have to redo the settings or anything.&#60;/p&#62;
&#60;p&#62;If you want to delete these data for good simply go to Your PHPMyAdmin and delete the database tables created by this plugin manually.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wpCommerce on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5262</link>
			<pubDate>Mon, 21 Jun 2010 00:18:24 +0000</pubDate>
			<dc:creator>wpCommerce</dc:creator>
			<guid isPermaLink="false">5262@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Even if you deactivate, delete and reinstall the plugin your settings will be still same like before.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>anotherbreed on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5260</link>
			<pubDate>Sun, 20 Jun 2010 21:06:45 +0000</pubDate>
			<dc:creator>anotherbreed</dc:creator>
			<guid isPermaLink="false">5260@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;I have fixed for now by deactivating, deleting the plugin and all the database tables of eStore. I reinstalled it, and now can add AND save products successfully.&#60;br /&#62;
The strange thing: Settings data is still there...!&#60;/p&#62;
&#60;p&#62;I will work only online.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>anotherbreed on "Products and Customers lost (but not Settings) after moving from local PC"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/products-and-customers-lost-but-not-settings-after-moving-from-local-pc#post-5258</link>
			<pubDate>Sun, 20 Jun 2010 16:52:09 +0000</pubDate>
			<dc:creator>anotherbreed</dc:creator>
			<guid isPermaLink="false">5258@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I just moved my local PC wordpress site online by copying files and database. Everything is working fine but eStore seems to have lost all the products and customers stats, but settings are still there. I also did a quick deactivate and reactivate.&#60;br /&#62;
I checked the database tables and they do contain my original product and customers data. Somehow eStore is just not finding them. &#60;/p&#62;
&#60;p&#62;Funnily enough I entered a new product with variations, hit save and received a msg indicating the product was saved successfully. I then went to the Manage Products panel to find nothing there. &#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

