<?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; Backup</title> <atom:link href="http://alexander.holbreich.org/tag/backup/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>Update your wordpress with one click</title><link>http://alexander.holbreich.org/2007/12/update-your-wordpress-with-one-click/</link> <comments>http://alexander.holbreich.org/2007/12/update-your-wordpress-with-one-click/#comments</comments> <pubDate>Sun, 23 Dec 2007 16:53:01 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[Backup]]></category> <category><![CDATA[Instant upgrade]]></category> <category><![CDATA[Plugin]]></category><guid isPermaLink="false">http://alexander.holbreich.org2007/12/update-your-wordpress-with-one-click/</guid> <description><![CDATA[How many lifetime people spend to administrate their software. Upgrading, updating, patches, bug-fixes etc. Also in case of WordPress new Versions arise pretty often, and it&#8217;s recommended to upgrade, cause several security relevant fixes or some very cool features you was long time waiting for, might be included in next release. I&#8217;m not kidding with [...]]]></description> <content:encoded><![CDATA[<p>How many lifetime people spend to administrate their software. Upgrading, updating, patches, bug-fixes etc. Also in case of <span class="yshortcuts" id="lw_1198854878_0">WordPress</span> new Versions arise pretty often, and it&#8217;s recommended to upgrade, cause several security relevant fixes or some very cool features you was long time waiting for, might be included in next release. I&#8217;m not kidding with security after <a href="http://alexander.holbreich.org2007/07/i-was-hacked-thank-open-source/" title="Story obout how i was hacked">i was hacked</a>.</p><p>But updating of WordPress means download, backup, copy files per FTP and maybe backuping old files. And it get&#8217;s terrible, when you have to manage several sites.</p><p><span style="font-weight: bold">But the lazy way exists too! </span>And you need just two plug-ins, which can make you life really easier and secure, cause you don&#8217;t need to adjourn such important tasks.</p><p>Here are needed Plug-Ins:</p><ul><li> The <a href="http://www.ilfilosofo.com/blog/wp-db-backup/">DB back up Plug-in</a>.</li><li> The <a href="http://www.zirona.com/software/wordpress-instant-upgrade">Instant Upgrade Plug-In</a></li></ul><p>After installing these two you can start with the upgrading of your blog.</p><h3>Backup</h3><p>First use backup Plug-in to secure your DB cause ever update can brake your WordPress for several reasons.  Presented Backup Plug-In is really handy. Yo can select where to save the backup file, or whether it should be send per mail.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/backup.JPG" alt="backup.JPG" title="backup.JPG" border="0" height="153" width="397" /></p><p>Of cause the configuration of scheduler is possible. Furthermore the is possibility to back up all other db tables in the same Database scheme just by selectem them.</p><h3>Update</h3><p>Updating  with instant update Plug-In is easy too. It can be really done with one click, how promissed in the caption and in the Plug-In description. There is one option to choose wheter to upgrade to latest version, or some other version of your wish. And if everything went fine, you will see something like this:</p><p><em><strong>&#8220;Everything went smooth. Have fun with your new WordPress version!&#8221;</strong></em></p><p>Don&#8217;t forget to check your WordPress carefully after upgrading.  In case of my blogs the instant upgrade with these blogs has produced no errors. I have done upgrades form 2.2 and 2.2 version to 2.3.1 no troubles so far.</p><p>In the next time I&#8217;ll tell you about other Cool WordPress Plug-Ins.</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%2Fupdate-your-wordpress-with-one-click%2F&amp;t=Update%20your%20wordpress%20with%20one%20click"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;t=Update%20your%20wordpress%20with%20one%20click"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click&amp;bodytext=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;t=Update%20your%20wordpress%20with%20one%20click&amp;s=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;Title=Update%20your%20wordpress%20with%20one%20click"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fupdate-your-wordpress-with-one-click%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%2Fupdate-your-wordpress-with-one-click%2F&title=Update%20your%20wordpress%20with%20one%20click"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;t=Update%20your%20wordpress%20with%20one%20click"></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%2Fupdate-your-wordpress-with-one-click%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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click&amp;selection=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-116')" id="sociable-post-116" 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=Update%20your%20wordpress%20with%20one%20click%20-%20http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fupdate-your-wordpress-with-one-click%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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click&amp;notes=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click&amp;annotation=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></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=Update%20your%20wordpress%20with%20one%20click&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fupdate-your-wordpress-with-one-click%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=How%20many%20lifetime%20people%20spend%20to%20administrate%20their%20software.%20Upgrading%2C%20updating%2C%20patches%2C%20bug-fixes%20etc.%20Also%20in%20case%20of%20Wordpress%20new%20Versions%20arise%20pretty%20often%2C%20and%20it%27s%20recommended%20to%20upgrade%2C%20cause%20several%20security%20relevant%20fixes%20or%20some%20very"></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=Update%20your%20wordpress%20with%20one%20click&body=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fupdate-your-wordpress-with-one-click%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-116')"><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-116',true)" class="close"> <img onclick="hide_sociable('post-116',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="Update your wordpress with one click - http://alexander.holbreich.org/2007/12/update-your-wordpress-with-one-click/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2007/12/update-your-wordpress-with-one-click/" 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/update-your-wordpress-with-one-click/" 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%2Fupdate-your-wordpress-with-one-click%2F&amp;title=Update%20your%20wordpress%20with%20one%20click'  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/update-your-wordpress-with-one-click/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2007/12/update-your-wordpress-with-one-click/&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/update-your-wordpress-with-one-click/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2007/12/update-your-wordpress-with-one-click/feed/</wfw:commentRss> <slash:comments>2</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/12 queries in 0.028 seconds using disk: basic
Object Caching 593/614 objects using disk: basic

Served from: alexander.holbreich.org @ 2012-02-04 19:56:09 -->
