<?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>Alexander Holbreich&#187; magento</title> <atom:link href="http://alexander.holbreich.org/tag/magento/feed/" rel="self" type="application/rss+xml" /><link>http://alexander.holbreich.org</link> <description>Everything becomes a little different as soon as it is spoken out loud.  ~Hermann Hesse</description> <lastBuildDate>Wed, 01 Feb 2012 22:44:21 +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 duplicate magento installation</title><link>http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/</link> <comments>http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/#comments</comments> <pubDate>Thu, 29 Jan 2009 22:06:37 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[Backup]]></category> <category><![CDATA[content]]></category> <category><![CDATA[database]]></category> <category><![CDATA[eCommerece]]></category> <category><![CDATA[magento]]></category> <category><![CDATA[mirroring]]></category> <category><![CDATA[testing]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=335</guid> <description><![CDATA[In this article I explain how to create a copy of running Magento online shop . One of purposes of having duplicates  is e.g.  the need of developing or test environment. Test are very inmportant in magento. Many people do official Magento upgrades on productive environments and suffer form it.   You don&#8217;t need to do [...]]]></description> <content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-379" title="duplmagento" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/duplmagento.gif?4c9b33" alt="duplmagento" width="105" height="105" />In this article I explain how to create a copy of running Magento online shop . One of purposes of having duplicates  is e.g.  the need of developing or test environment. Test are very inmportant in magento. Many people do official Magento upgrades on productive environments and suffer form it.   You don&#8217;t need to do so, use always test environment first!</p><p>However the copy procces of  Magento shop has following main steps</p><ul><li>duplication of database schema</li><li>duplication of core sources</li><li>duplication of downloader sources</li></ul><h2>Database<a href="http://alexander.holbreich.org/wp-content/uploads/2009/01/pohpadmin.gif?4c9b33"><img class="alignright size-thumbnail wp-image-342" title="phpMyadmin" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/pohpadmin-150x150.gif?4c9b33" alt="pohpadmin" width="120" height="120" /></a></h2><p>First, let me say say, that it is good idea to not install two Magento instances to the same database. Magento in  version 1.1.8 s has 198 database tables. Most of them are of type  <em>InnoDB</em> and they are  related with each other by checked foreign key constraints. That is background information.</p><p>So new database for every  Magento instance save you from having headaches  and this not only because having just two magento installation i one DB leads too approx. 400 tables in one database but more to avoid possible problems or side effects with constraints and Co. (e.g. ) .  <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> .</p><p>The easiest way to export the database is to use phpMyAdmin. Go to export dialog of original database, select &#8220;zipped&#8221; option, select tabbles, let other options on their defaults (See screen 1) and get zipped download. Switch to new database and  upload the downloaded  there in the import dialog.</p><p>Sound as a piece of cake, but sometimes the import of the SQL files will not work. I have already seen many different exceptions bu trying. Beginning with &#8220;SQL Syntax..&#8221; and ending with &#8220;constraint violation&#8230;&#8221;.  In my opinion the purpose of problems is <span style="text-decoration: underline;">size</span> of some tables and therefore of whole backup. There are few MyISAM tables that are full with (useless) log data. And the amount of this data makes problems to the import routine. Don&#8217;t export them first at time! they don&#8217;t have any constraint to other tables so you can import them on second or third turn. Alternative  you can export only the DDL-Statement of this table not the data itself.</p><p>Here are tables you can  omit in first step:</p><div><a href="http://alexander.holbreich.org/wp-content/uploads/2009/01/tables.gif?4c9b33"><img class="alignright size-thumbnail wp-image-342" title="tables" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/tables-150x150.gif?4c9b33" alt="tables" width="120" height="120" /></a></div><ul><li>log_url</li><li>log_url_info</li><li>log_visitor</li><li>log_visitor_info</li></ul><p>Don&#8217;t forget to change configured URL of origin shop to the  URLs of new shop in the table <strong>core_config_data</strong>. You can also use Search-Tool of phpMyAdmin and identify every record where old URL is used &#8211; but outside of core_config_data<strong> </strong>table  they are not so important and could be changed later in the Shop interface.</p><h2>Core Sources</h2><p>That is most easiest part. Just copy the source of magento to the new location, but don&#8217;t copy the following:</p><ul><li><em>downloader</em> dir</li><li>any content of dirs inside of <em>var</em> but <em>.htacces</em> file.</li><li><em>media/tmp</em> dir</li></ul><p>If you use another DB for new Magento installation don&#8217;t forget to change DB setting in <em>app/etc/local.xml file. Var </em>directory hold any temporary content like sessions, caches and error-logs. Downloader is used by Magento connect module, before copy must do some preparations.</p><h2>Magento Downloader</h2><p><strong><span style="color: #d00;">Warning!</span> do not copy unchanged downloader to new location on the same server it may break your origin magento installation!</strong></p><p>Now I got your attention <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> The problem is that downloder stores serverpath in many many configuration files. And if you don&#8217;t change the serverpath  and  starts updates on  new shop copy, you will update the origin shop and not the new copy of it!</p><p>The server path of origin magento shop is stored in many many files in the downloader directory, you can&#8217;t change all of them manually. But you can do it automatically. If you have SSH access to your web-space  following command will help you:</p><p><strong><span style="color: #ff0000;">Update:</span> The described way to handle downloader sometimes <a href="http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/?trashed=1&amp;ids=4097#comment-4174">causes problems</a> by doing upgrade. Especially pear.ini shold be treatet carefully. Check also a <a href="http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/?trashed=1&amp;ids=4097#comment-4474">workaround</a> proposed by Enno Julian.</strong></p><pre class="brush: bash; title: ; notranslate">

//shows all files with OLD_PATH element

find  . -type f -exec grep -q &quot;OLD_PATH&quot; '{}' \; -print

//Replaces OLD_PATH string in all occurrences in every file to NEW_PATH

find . -type f -print | xargs sed -i -e ’s/OLD_PATH/NEW_PATH/g’
</pre><p>If you have only ftp access, then you can use [Alt+F7]-search in <strong>Total Commander</strong>. Then open each file with <strong>Notepad++</strong> and then use &#8220;Search and Replace&#8221; functionality of Notepad++ on each file. Whole replacement willtake you max. 5 minutes.</p><div><a href="http://alexander.holbreich.org/wp-content/uploads/2009/01/totalcommander.gif?4c9b33"><img class="alignright size-thumbnail wp-image-369" title="totalcommander" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/totalcommander-150x150.gif?4c9b33" alt="totalcommander" width="120" height="120" /></a></div><p>After replacing old path you can upload downloader to the new instance of Magento.</p><p>Now everything including &#8220;Magento Connect&#8221; should work properly and independent form each othen on thow instances. The last thing my be useful   is to clear all caches in admin back-end of new instance. Good luck! <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><h3>Open Question</h3><p>This article describes how to double the Magento instance once. The next question which i didn&#8217;t answered for me yet is how to make permanent  mirroring of data from production environment to the test installation. Maybe someone has cool ideas?</p><h3>Disclaimer</h3><p>Please consider that I can&#8217;t guarantee that everything described here will work in your environment as it worked for me. Please use this tutorial as incitement and adopt my methods to your own situation. Be sure that you don&#8217;t peril origin Magento installation or other data. Do regular backup befor you begin!</p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;t=How%20to%20duplicate%20magento%20installation"></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;t=How%20to%20duplicate%20magento%20installation"></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation"></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation&amp;bodytext=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;t=How%20to%20duplicate%20magento%20installation&amp;s=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;Title=How%20to%20duplicate%20magento%20installation"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&title=How%20to%20duplicate%20magento%20installation"></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;t=How%20to%20duplicate%20magento%20installation"></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation&amp;selection=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-335')" id="sociable-post-335" style="display:none;"><div style="top: auto; left: auto; display: block;" id="sociable"><div class="popup"><div class="content"><ul><li style="heigth:16px;width:16px"><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=How%20to%20duplicate%20magento%20installation%20-%20http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation&amp;notes=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation&amp;annotation=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=How%20to%20duplicate%20magento%20installation&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=In%20this%20article%20I%20explain%20how%20to%20create%20a%20copy%20of%20running%20Magento%20online%20shop%20.%20One%20of%20purposes%20of%20having%20duplicates%C2%A0%20is%20e.g.%C2%A0%20the%20need%20of%20developing%20or%20test%20environment.%20Test%20are%20very%20inmportant%20in%20magento.%20Many%20people%20do%20official%20Magento%20upgrades"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=How%20to%20duplicate%20magento%20installation&body=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&ui=2&tf=1&shva=1"></a></li><li style="heigth:16px;width:16px"><a style="cursor:poainter" rel="nofollow"   onMouseOver="more(this,'post-335')"><img src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/option1/16/more.png?4c9b33" title="Posterous" alt="Posterous" /></a></li></ul></div> <a style="cursor:pointer" onclick="hide_sociable('post-335',true)" class="close"> <img onclick="hide_sociable('post-335',true)" title="close" src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/closelabel.png?4c9b33"> </a></div></div></div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="How to duplicate magento installation - http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fhow-to-duplicate-magento-installation%2F&amp;title=How%20to%20duplicate%20magento%20installation'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/how-to-duplicate-magento-installation/feed/</wfw:commentRss> <slash:comments>58</slash:comments> </item> <item><title>Found solution for Magento &#8211; &#8220;SQLSTATE[HY000]: General error&#8221; on installation</title><link>http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/</link> <comments>http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/#comments</comments> <pubDate>Sun, 04 Jan 2009 21:29:30 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[magento]]></category> <category><![CDATA[mysql]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=199</guid> <description><![CDATA[I wrote already in the past about eCommerce System. I play with Magento till now from time to time. Unfortunately I had some problems with the installation and I could not find  help in the web. Therefore maybe this post  can be useful for some of you how is dealing whis Magento too. The Problem [...]]]></description> <content:encoded><![CDATA[<p>I wrote already in the past about eCommerce System. I play with Magento till now from time to time. Unfortunately I had some problems with the installation and I could not find  help in the web. Therefore maybe this post  can be useful for some of you how is dealing whis Magento too.</p><h2>The Problem</h2><p>Every time on  the installation of Magento i saw following  exception.</p><pre class="brush: xml; title: ; notranslate">

Error in file: &quot;.... app/code/core/Mage/Core/sql/core_setup/mysql4-install-0.8.0.php&quot; - SQLSTATE[HY000]: General error: 1005 Can't create table './db203484_1/#sql-1dd4_17baf.frm' (errno: 121)
Trace:
#0 .../app/code/core/Mage/Core/Model/Resource/Setup.php(286): Mage::exception('Mage_Core', 'Error in file: ...')
#1 ...app/code/core/Mage/Core/Model/Resource/Setup.php(166): Mage_Core_Model_Resource_Setup-&gt;_modifyResourceDb('install', '', '0.8.11')
#2 .../app/code/core/Mage/Core/Model/Resource/Setup.php(154): Mage_Core_Model_Resource_Setup-&gt;_installResourceDb('0.8.11')
#3 .../app/code/core/Mage/Core/Model/Resource/Setup.php(120): Mage_Core_Model_Resource_Setup-&gt;applyUpdates()
#4 .../app/code/core/Mage/Core/Model/Config.php(215): Mage_Core_Model_Resource_Setup::applyAllUpdates()
#5 .../app/code/core/Mage/Core/Model/App.php(236): Mage_Core_Model_Config-&gt;init(Array)
#6 .../app/Mage.php(424): Mage_Core_Model_App-&gt;init('', 'store', Array)
#7 .../app/Mage.php(443): Mage::app('', 'store', Array)
#8 .../index.php(52): Mage::run()
#9 {main}
</pre><p>I tried installation with version 1.1.3, 1.1.4, 1.1.6 and 1.1.8 nothing helped&#8230;</p><p>You can find <a href="http://www.magentocommerce.com/search/results/?q=mysql4-install-0.8.0.php%22+-+SQLSTATE[HY000]&amp;eq_lk=boards" target="_blank">many threads</a> on Magentocommere Forum to this issue. Some hints may help you once but do not solve the problem. I guess I don&#8217;t have solved problem globally. But I found the cause of the problem so everybody can solve it on his own way.</p><h2>Cause of the exception</h2><p>During the installation routine  many DB-Tables should be created in your Database. We talk here about MySQL Database.  So Magento begins with SQL-Statement that are holded in the <em>mysql4-install-0.8.0.php. </em>This file is also<em> </em>pintet in the Exception message as the causes of the problem.</p><p>I analysed the Statement and this came out..</p><p>Before any CREATE-Statement &#8211; Magento executes this:</p><pre class="brush: sql; title: ; notranslate">
SET SQL_MODE=''
SET @OLD_FOREIGN_KEY_CHECKS=@@
FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO'
</pre><p>Then, after all tables and indexes  defined in  <em>mysql4-install-0.8.0.php</em> are created, magento executes following Statement.:</p><pre class="brush: sql; title: ; notranslate">
SET SQL_MODE=IFNULL(@OLD_SQL_MODE,'')
SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS,0)
</pre><p>An the last row causes <strong><em>#1231 &#8211; Variable ‘foreign_key_checks’ can’t be set to the value of ‘0’ </em></strong>Exception which is finely identified by me as  the cause of such installation problems!</p><h2>Solution</h2><p>I did&#8217;n spend much time to find out why the Varibale SET FOREIGN_KEY_CHECKS can&#8217;t be set to &#8217;0&#8242;, because it looks like MySQL bug.</p><p>However, it&#8217;s maybe not the finest solution but it helps. If you can drop the whole the database and create new one, then the installation works. It seems to set all the before settings back and installtion works fine on &#8220;vergin-Databases&#8221;.</p><p>If you  feel experienced in MYSQL and has an Idea how to overcome this problem without creating new Databases please make your comment ! <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;t=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation"></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;t=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation"></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation"></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;bodytext=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;t=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;s=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;Title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation"></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;t=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation"></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;selection=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-199')" id="sociable-post-199" style="display:none;"><div style="top: auto; left: auto; display: block;" id="sociable"><div class="popup"><div class="content"><ul><li style="heigth:16px;width:16px"><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation%20-%20http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;notes=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;annotation=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=I%20wrote%20already%20in%20the%20past%20about%20eCommerce%20System.%20I%20play%20with%20Magento%20till%20now%20from%20time%20to%20time.%20Unfortunately%20I%20had%20some%20problems%20with%20the%20installation%20and%20I%20could%20not%20find%C2%A0%20help%20in%20the%20web.%20Therefore%20maybe%20this%20post%C2%A0%20can%20be%20useful%20for%20some%20of%20"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation&body=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&ui=2&tf=1&shva=1"></a></li><li style="heigth:16px;width:16px"><a style="cursor:poainter" rel="nofollow"   onMouseOver="more(this,'post-199')"><img src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/option1/16/more.png?4c9b33" title="Posterous" alt="Posterous" /></a></li></ul></div> <a style="cursor:pointer" onclick="hide_sociable('post-199',true)" class="close"> <img onclick="hide_sociable('post-199',true)" title="close" src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/closelabel.png?4c9b33"> </a></div></div></div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Found solution for Magento - "SQLSTATE[HY000]: General error" on installation - http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fsolved-magento-hy000-problem%2F&amp;title=Found%20solution%20for%20Magento%20-%20%22SQLSTATE%5BHY000%5D%3A%20General%20error%22%20on%20installation'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/solved-magento-hy000-problem/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Magento 0.9&#8230;.</title><link>http://alexander.holbreich.org/2008/03/magento-09/</link> <comments>http://alexander.holbreich.org/2008/03/magento-09/#comments</comments> <pubDate>Sun, 30 Mar 2008 22:54:44 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[commerce platform]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[magento]]></category> <category><![CDATA[online shop]]></category> <category><![CDATA[open source]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/magento-09/</guid> <description><![CDATA[Yesterday I tried Magento again. As I tried it it was a very very slow and buggy CMS. However last days I played with the brand new Version 0.9.17740 of Magento E-Commerce Solution and I was positive impressed. There are only few bugs remained in that late version, even if I was still able to [...]]]></description> <content:encoded><![CDATA[<p>Yesterday I tried <a href="http://magentocommerce">Magento</a> again. As I tried it  it was a very very slow and buggy CMS. However last days I played with the brand new Version 0.9.17740 of Magento E-Commerce Solution and I was positive impressed.</p><p>There are only few bugs remained in that late version, even if I was still able to find some of them.  Furthermore Magento-people have really speed their System up, which was enormously important to my eyes. So now it seems that Magento becomes really competitive E Commerce Platform and that is just great! If the development goes so further on. None of the competing Systems will survive. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /></p><p>However one need much time to get familiar with Magento. That platform brings very much functionality and configuration options, so configuring Magento can become a new Profession! <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> Unfortunately Configuration Options are just sparse documented at that point, so there is bunch of try and error till one can get his first Online-Shop of dreams.</p><p>On the other side Magento has growing online Community, which is effect more worth as full documentation. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /></p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9...."></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9...."></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9...."></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;bodytext=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9....&amp;s=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;Title=Magento%200.9...."></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&title=Magento%200.9...."></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9...."></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;selection=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-163')" id="sociable-post-163" style="display:none;"><div style="top: auto; left: auto; display: block;" id="sociable"><div class="popup"><div class="content"><ul><li style="heigth:16px;width:16px"><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Magento%200.9....%20-%20http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;notes=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;annotation=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Magento%200.9....&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Magento%200.9....&body=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&ui=2&tf=1&shva=1"></a></li><li style="heigth:16px;width:16px"><a style="cursor:poainter" rel="nofollow"   onMouseOver="more(this,'post-163')"><img src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/option1/16/more.png?4c9b33" title="Posterous" alt="Posterous" /></a></li></ul></div> <a style="cursor:pointer" onclick="hide_sociable('post-163',true)" class="close"> <img onclick="hide_sociable('post-163',true)" title="close" src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/closelabel.png?4c9b33"> </a></div></div></div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Magento 0.9.... - http://alexander.holbreich.org/2008/03/magento-09/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2008/03/magento-09/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2008/03/magento-09/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2008/03/magento-09/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2008/03/magento-09/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2008/03/magento-09/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/magento-09/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Magento</title><link>http://alexander.holbreich.org/2007/12/magento/</link> <comments>http://alexander.holbreich.org/2007/12/magento/#comments</comments> <pubDate>Sun, 09 Dec 2007 17:20:07 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[magento]]></category> <category><![CDATA[online shop]]></category> <category><![CDATA[open source]]></category><guid isPermaLink="false">http://alexander.holbreich.org2007/12/magento/</guid> <description><![CDATA[I&#8217;ve tried out some of commercial shops and also some open source like osCommerce, but I forgot them when i saw Magento. It does not impress with easy installation or intuitive configuration, or even speed. No, no, that are not advantages of Magento, but at first disadvantages. But nevertheless that osCommers systems captures my primary [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve tried out some of <a href="http://alexander.holbreich.org2007/11/good-php-online-shop-for-money/">commercial shops</a> and also some open source like <a href="http://alexander.holbreich.org2007/11/closer-look-at-oscommerce/">osCommerce</a>, but I forgot them when i saw <a href="http://www.magentocommerce.com/">Magento</a>. It does not impress with easy installation or intuitive configuration, or even speed. No, no, that are not advantages of Magento, but at first disadvantages. But nevertheless that osCommers systems captures my primary interest. So why?</p><p>It is done professional! Yes, in my opinion that describes all advantages of that shop short. Cause in comparison to others shop systems it offers very much functionality and flexibility out of the box, combined with good looking default template. Just visit the <a href="http://demo.magentocommerce.com/">demo-shop</a> of Magento to see it self. I will not describe every detail of Magento here, cause it was done many times before, like <a href="http://blog.techdivision.com/magento-%E2%80%93-revolution-im-ecommerce/">that article</a>, which describes (in German) why Magento is flexible, self-contained, individual, and is prepared for the future. But the best impression you can make by trying it out. I tried it for you and i can point some disadvantages to.</p><p>The greatest disadvantage of that system is that its powered by <a href="http://framework.zend.com/">Zend Framework</a>. Wait! You are Zend Framework evangelist? Let me explain. I don&#8217;t say that Zend Framework is bad, no i say &#8211; <strong>it&#8217;s slow</strong> <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> ! Of cause it may be that Magento is so bad written on that brilliant framework making it, so slow, i don&#8217;t know, but it is really, really slow on normal PHP without Zend engine. And it&#8217;s don&#8217;t comes out with standard 8Mb configuration of your PHP engine, it needs at least 20Mb, otherwise it not works.</p><p>And of cause you need some not ever usual extensions of your PHP (which is PHP 5.2.0 or newer):</p><ul><li>PDO/MySQL</li><li>MySQLi</li><li>mcrypt</li><li>mhash</li><li>simplexml</li><li>DOM</li></ul><p>I called my host provider before a had all required addons. But i was supported by good installation routine in this exercise.</p><p>Further my shop installation was not such intuitive as it can be in the admin area, but it&#8217;s OK, cause there are really many configuration possibilities that have to be placed somewhere. I think it will mature in the future and is not so relevant at all ,cause admins will learn how to configure Magento, but customer will/must not learn it. And precisely customers will like your Magento usability, i think.</p><p>Last but not least my version (0.6.13&#8230;) of Magneto was pretty buggy. After doing some configuration steps in admin area the store produces errors (Zend Framework pointed me to SQL Errors) and was no more functional anymore <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /> . That are of cause teething problems, that are possibly already fixed in the <a href="http://www.magentocommerce.com/download/release_notes#Release%20Notes%20-%20Magento%20Preview%200.6.14100%20%28December%204,%202007%29">new Version</a>: &#8220;<span style="font-style: italic">&#8230; Fixed few database foreign keys problems &#8230;</span>&#8220;.</p><p>Finally i would say, that Magento is best online shop system that i know at the moment, i will stay watching Magento development and will try out newer matured versions.  But at the moment Magento is not really ready for productive run, especially the slowness of the systen  is  greatest disadvantage of Magento for me.</p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento"></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento"></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento"></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;bodytext=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento&amp;s=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;Title=Magento"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&title=Magento"></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento"></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;selection=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-112')" id="sociable-post-112" style="display:none;"><div style="top: auto; left: auto; display: block;" id="sociable"><div class="popup"><div class="content"><ul><li style="heigth:16px;width:16px"><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Magento%20-%20http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;notes=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;annotation=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Magento&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Magento&body=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&ui=2&tf=1&shva=1"></a></li><li style="heigth:16px;width:16px"><a style="cursor:poainter" rel="nofollow"   onMouseOver="more(this,'post-112')"><img src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/option1/16/more.png?4c9b33" title="Posterous" alt="Posterous" /></a></li></ul></div> <a style="cursor:pointer" onclick="hide_sociable('post-112',true)" class="close"> <img onclick="hide_sociable('post-112',true)" title="close" src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/closelabel.png?4c9b33"> </a></div></div></div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Magento - http://alexander.holbreich.org/2007/12/magento/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2007/12/magento/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2007/12/magento/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2007/12/magento/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2007/12/magento/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2007/12/magento/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2007/12/magento/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/21 queries in 0.022 seconds using disk: basic
Object Caching 819/859 objects using disk: basic

Served from: alexander.holbreich.org @ 2012-02-07 10:24:58 -->
