<?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; content</title> <atom:link href="http://alexander.holbreich.org/tag/content/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>Best related post plugin</title><link>http://alexander.holbreich.org/2009/01/best-related-post-plugin/</link> <comments>http://alexander.holbreich.org/2009/01/best-related-post-plugin/#comments</comments> <pubDate>Tue, 27 Jan 2009 22:14:39 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[content]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[related posts]]></category> <category><![CDATA[semantic]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=308</guid> <description><![CDATA[Today I found very cool related post Plug-in which I want to share with you &#8211; dear WordPress Blogger! The  name of that plug-in is  Microkid&#8217;s Related posts and I already like it much! It differs from other &#8220;Related posts&#8221;-plug-ins, which are based on automatic content analysis. What ever the content analysis algorithms are and [...]]]></description> <content:encoded><![CDATA[<p><img class="alignright" title="Related Post Plug-In" src="http://www.microkid.net/wp-content/uploads/2007/11/development.jpg" alt="" width="150" height="150" /> Today I found very cool related post Plug-in which I want to share with you &#8211; dear WordPress Blogger! The  name of that plug-in is  <a href="http://www.microkid.net/wordpress/related-posts/">Microkid&#8217;s Related posts</a> and I already like it much!</p><p>It differs from other &#8220;Related posts&#8221;-plug-ins, which are based on automatic content analysis. What ever the content analysis algorithms are and how ever the configuration options used,  resulting related post lists are mostly just a bullsh$%.  That&#8217;s is understandably, then these plug-ins have same problem like search engines and other content analysis tools . In the reality of our age (It is 2009 A.D.) &#8211; <span style="text-decoration: underline;">computers cannnot understand any semantic</span> of human written articles.</p><p>So what is the solution for an good Related Post Plugin? Of cause simple to do it manually!</p><p>You say it much work?  No!, with <strong>Micrkid&#8217;s Related posts Plugin</strong>, which  provides very comfortable AJAX driven interface, it becomes fun! It&#8217;s becomes so easy and quick as providing tags. You decide what is related to the actual post by creating meaningful related post list.  Try it out!</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%2Fbest-related-post-plugin%2F&amp;t=Best%20related%20post%20plugin"></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%2Fbest-related-post-plugin%2F&amp;t=Best%20related%20post%20plugin"></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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin"></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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin&amp;bodytext=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></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%2Fbest-related-post-plugin%2F&amp;t=Best%20related%20post%20plugin&amp;s=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></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%2Fbest-related-post-plugin%2F&amp;Title=Best%20related%20post%20plugin"></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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fbest-related-post-plugin%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%2Fbest-related-post-plugin%2F&title=Best%20related%20post%20plugin"></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%2Fbest-related-post-plugin%2F&amp;t=Best%20related%20post%20plugin"></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%2Fbest-related-post-plugin%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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin&amp;selection=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-308')" id="sociable-post-308" 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=Best%20related%20post%20plugin%20-%20http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fbest-related-post-plugin%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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin&amp;notes=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin&amp;annotation=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></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=Best%20related%20post%20plugin&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fbest-related-post-plugin%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=%20Today%20I%20found%20very%20cool%20related%20post%20Plug-in%20which%20I%20want%20to%20share%20with%20you%20-%20dear%20Wordpress%20Blogger%21%20The%C2%A0%20name%20of%20that%20plug-in%20is%C2%A0%20Microkid%27s%20Related%20posts%20and%20I%20already%20like%20it%20much%21%0D%0A%0D%0AIt%20differs%20from%20other%20%22Related%20posts%22-plug-ins%2C%20which%20are%20b"></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=Best%20related%20post%20plugin&body=http%3A%2F%2Falexander.holbreich.org%2F2009%2F01%2Fbest-related-post-plugin%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-308')"><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-308',true)" class="close"> <img onclick="hide_sociable('post-308',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="Best related post plugin - http://alexander.holbreich.org/2009/01/best-related-post-plugin/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2009/01/best-related-post-plugin/" 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/best-related-post-plugin/" 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%2Fbest-related-post-plugin%2F&amp;title=Best%20related%20post%20plugin'  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/best-related-post-plugin/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2009/01/best-related-post-plugin/&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/best-related-post-plugin/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/best-related-post-plugin/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>DIGG Effect is worth it?</title><link>http://alexander.holbreich.org/2008/03/digg-effect/</link> <comments>http://alexander.holbreich.org/2008/03/digg-effect/#comments</comments> <pubDate>Mon, 10 Mar 2008 21:06:57 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[background information]]></category> <category><![CDATA[community]]></category> <category><![CDATA[content]]></category> <category><![CDATA[digg]]></category> <category><![CDATA[no time]]></category> <category><![CDATA[social communities]]></category> <category><![CDATA[time is money]]></category> <category><![CDATA[traffic load]]></category> <category><![CDATA[visitors]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/digg-effect/</guid> <description><![CDATA[My last article depicts few facts of success in social communities. Here I wanna be more concrete and give you some interesting Background information of the DIGG and DIGG effect. Finelly I give my personal adwise not to try to be the top DIGGER, read why.]]></description> <content:encoded><![CDATA[<p>My   depicts few facts of success in social communities. Here I wanna be more concrete and give you some interesting Background information of the <a href="http://digg.com" target="_blank">DIGG</a> and <a href="http://www.ndesign-studio.com/blog/updates/the-digg-effect/" target="_blank">DIGG effect</a>. Finelly I give my personal adwise not to try to be the top DIGGER, read why.</p><h3>DIGG Effect</h3><p>Eric Enge has wrote very <a href="http://www.stonetemple.com/articles/secrets-for-success-on-digg.shtml" title="Secrets to Success on Digg" target="_blank">good article about succes on digg</a>. Some of details he presents my be not true at the moment, because DIGG evolves and changes internal algorithms. However some facts are really interesting.</p><p>As he says, stories that where able to reach the digg home page receive an average of 129 links, and more than 10,000 visitors in an hour. Some stories have brought even more than 1,000 links and 100,000 visitors. This shows how important DIGG is and why there are so many legend and so much attention from SEOs. So it has happened many times that stories which have made the home page, have brought the server of the story site can&#8217;t handle the traffic load. This is well known phenomena is known as the &#8220;Digg Effect&#8221;.</p><p>Of cause the quality of this kind of visitors is &#8220;bad&#8221;. Don&#8217;t expect that they will by your products and click Ads. Do not expect big growth in comments, DIGG users often comment regarding a site on digg itself instead of on the dugg website. Digg users comes to see only that what they would inspect in the story description on DIGG itself.</p><h3>I don&#8217;t wanna be a Digger</h3><p>So after reading several articles about how to success on DIGG i realized that<u> it would take very very very much time</u>. So as every body know time is money, but moreover time is life! In my opinion the truly success on DIGG starting from null will deserve much to much time in comparison to the revenue.<br /> Personally I don&#8217;t have much time and will not spend it to fullish site like DIGG, voting for silly topics of US tanagers <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> So at the moment and I think also in the future will not spend much time on DIGG or other communities.</p><p>I mean isn&#8217;t it better to spend time to create wonderful content? It would give you personal much more satisfaction than any DIGG effect. But however good content have in any case good chance to  achieve one DIGG effect after another!<br /> So by by DIGG, may others vote for my content, I will not spend my life for Digging <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><p>P.S. It doesn&#8217;t mean i will not continue submitting my articles to it <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%2F2008%2F03%2Fdigg-effect%2F&amp;t=DIGG%20Effect%20is%20worth%20it%3F"></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%2Fdigg-effect%2F&amp;t=DIGG%20Effect%20is%20worth%20it%3F"></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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F"></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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F&amp;bodytext=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></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%2Fdigg-effect%2F&amp;t=DIGG%20Effect%20is%20worth%20it%3F&amp;s=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></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%2Fdigg-effect%2F&amp;Title=DIGG%20Effect%20is%20worth%20it%3F"></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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fdigg-effect%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%2Fdigg-effect%2F&title=DIGG%20Effect%20is%20worth%20it%3F"></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%2Fdigg-effect%2F&amp;t=DIGG%20Effect%20is%20worth%20it%3F"></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%2Fdigg-effect%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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F&amp;selection=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-156')" id="sociable-post-156" 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=DIGG%20Effect%20is%20worth%20it%3F%20-%20http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fdigg-effect%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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F&amp;notes=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F&amp;annotation=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></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=DIGG%20Effect%20is%20worth%20it%3F&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fdigg-effect%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=My%20last%20article%20depicts%20few%20facts%20of%20success%20in%20social%20communities.%20Here%20I%20wanna%20be%20more%20concrete%20and%20give%20you%20some%20interesting%20Background%20information%20of%20the%20DIGG%20and%20DIGG%20effect.%20Finelly%20I%20give%20my%20personal%20adwise%20not%20to%20try%20to%20be%20the%20top%20DIGGER%2C%20read%20why."></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=DIGG%20Effect%20is%20worth%20it%3F&body=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fdigg-effect%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-156')"><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-156',true)" class="close"> <img onclick="hide_sociable('post-156',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="DIGG Effect is worth it? - http://alexander.holbreich.org/2008/03/digg-effect/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2008/03/digg-effect/" 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/digg-effect/" 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%2Fdigg-effect%2F&amp;title=DIGG%20Effect%20is%20worth%20it%3F'  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/digg-effect/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2008/03/digg-effect/&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/digg-effect/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/digg-effect/feed/</wfw:commentRss> <slash:comments>0</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.011 seconds using disk: basic
Object Caching 686/708 objects using disk: basic

Served from: alexander.holbreich.org @ 2012-02-04 19:56:51 -->
