<?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>die musterdenker &#187; update</title>
	<atom:link href="http://www.musterdenker.de/tag/update/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.musterdenker.de</link>
	<description></description>
	<lastBuildDate>Sun, 11 Apr 2010 18:07:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Update OXID eShop from PE 3.X to PE 4.1.5 SQL issues</title>
		<link>http://www.musterdenker.de/2009/09/update-oxid-eshop-from-pe-3-x-to-pe-4-1-5-sql-issues/</link>
		<comments>http://www.musterdenker.de/2009/09/update-oxid-eshop-from-pe-3-x-to-pe-4-1-5-sql-issues/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 17:27:00 +0000</pubDate>
		<dc:creator>mathias</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[oxid]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.musterdenker.de/?p=176</guid>
		<description><![CDATA[I recently did an update from an old OXID eShop Version PE 3.0.4 to the newest Version of PE 4.1.5.
Although most of the things went well I ran into several problems. Sharing the solutions here might help you and will for sure help me for the next update  
1. no cumulative updates: As there [...]]]></description>
			<content:encoded><![CDATA[<p>I recently did an update from an old <a href="http://www.oxid-esales.com" target="_blank">OXID eShop Version</a> PE 3.0.4 to the newest Version of PE 4.1.5.</p>
<p>Although most of the things went well I ran into several problems. Sharing the solutions here might help you and will for sure help me for the next update <img src='http://www.musterdenker.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>1. no cumulative updates:</strong> As there are no cumulative updates you are forced to do each update step separately from Version 4.0.0.0 to 4.1.5. As there is only an updatescript from 3.0.4. to 4.0.0.0 you are forced to do all 9! updates afterwards. OXID promised that there will be cumulative updates in the future so you&#8217;ll be able to say &#8220;give me a patch from 4.0.0.0 to 4.1.X and you&#8217;ll get a single file. But as we are not living in the future (yet) here is a simple list of 9 SQL scripts you have to execute to come from freshly updated 4.0.0.0 to version 4.1.5. Be aware that there are also 2 PHP files you have to copy to doc root and execute after the according SQL has been executed.<br />
<a href="http://www.musterdenker.de/wp-content/uploads/2009/09/sql.zip">Download all OXID update SQLs at once.</a></p>
<p><strong>2. OXACTIVE &gt; 1 in oxarticles table:</strong> The oxactive field in oxarticle table is responsible to activate/deactivate an article. Allowed values are 0 and 1. But after update it may happen that you have a lot of &#8220;2&#8243;s as values, leading to &#8220;half active&#8221; articles. I can tell you, thats quite confusing <img src='http://www.musterdenker.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . <a href="https://bugs.oxid-esales.com/view.php?id=938" target="_blank">Here is the accorind note by OXID</a> and with the following SQL you can fix it:</p>
<address>UPDATE oxarticles SET oxactive = 0 WHERE oxactive &gt; 1</address>
<p><strong>3. Old orders have sum of 0 and all articles of an old order have thr price of 0</strong>. Nearly all entries in the order overview in admin might become &#8220;0&#8243; after an update. The reasons are new fields in oxorder and oxorderarticles tables. These fields might not be filled. Thats why you&#8217;ll need the following SQL:</p>
<address>update oxorderarticles set oxbprice = oxprice where oxbprice = 0 and oxprice &lt;&gt; 0</p>
<p>update oxorderarticles set oxnprice = ((oxprice*100) / (100 + oxvat)) where oxnprice = 0 and oxprice &lt;&gt; 0</p>
<p>UPDATE `oxorder` AS _main SET _main.oxtotalordersum = _main.oxdelcost + _main.oxpaycost + _main.oxwrapcost &#8211; _main.oxdiscount + ( SELECT SUM( oxbrutprice ) FROM `oxorderarticles` WHERE oxorderid = _main.oxid ), _main.oxtotalbrutsum = ( SELECT SUM( oxbrutprice ) FROM `oxorderarticles` WHERE oxorderid = _main.oxid ), _main.oxtotalnetsum = ( SELECT SUM( oxnetprice ) FROM `oxorderarticles` WHERE oxorderid = _main.oxid ) WHERE _main.oxtotalnetsum = 0 AND _main.oxtotalbrutsum = 0 AND _main.oxtotalordersum = 0;</p>
</address>
<p><a href="https://bugs.oxid-esales.com/view.php?id=691" target="_blank">An according note by OXID about the third of these SQLs</a>. The first two I build myself.</p>
<p>Of course all the files and SQLs are without ANY warranty and you use them at your own risk! Don&#8217;t forget a backup before you do anything!</p>
<p>Please leave feedback <img src='http://www.musterdenker.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.musterdenker.de/2009/09/update-oxid-eshop-from-pe-3-x-to-pe-4-1-5-sql-issues/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.7 blank page</title>
		<link>http://www.musterdenker.de/2009/05/wordpress-27-blank-page/</link>
		<comments>http://www.musterdenker.de/2009/05/wordpress-27-blank-page/#comments</comments>
		<pubDate>Sun, 03 May 2009 01:44:09 +0000</pubDate>
		<dc:creator>mathias</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.musterdenker.de/?p=116</guid>
		<description><![CDATA[We updated this blog several weeks ago, but suddenly the nothing was working. The whole frontend of this blog was blank, only admin was still working. Playing around with php installation, checking different templates and updating all plugins I tried everything without any success. Finally I deactivated all plugins and &#8230;.. the blog waws working [...]]]></description>
			<content:encoded><![CDATA[<p>We updated this blog several weeks ago, but suddenly the nothing was working. The whole frontend of this blog was blank, only admin was still working. Playing around with php installation, checking different templates and updating all plugins I tried everything without any success. Finally I deactivated all plugins and &#8230;.. the blog waws working again. So I hunted down the &#8220;black sheep&#8221; and it was:</p>
<p>cforms V 10.5</p>
<p>For now I removed this plugin, maybe I&#8217;ll later investigate a bit more what happend &#8230;</p>
<p>If you also have a blank screen but removing cforms does not help try these useful links:</p>
<p>http://wordpress.org/support/topic/225819/page/1<br />
http://www.blogsdna.com/1669/fix-wordpress-27-upgrade-white-blank-page-issue-updatephp.htm<br />
http://nslog.com/2008/12/13/wordpress_27_bug_blank_home_page_high_number_of_posts</p>
]]></content:encoded>
			<wfw:commentRss>http://www.musterdenker.de/2009/05/wordpress-27-blank-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
