<?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; Internet</title> <atom:link href="http://alexander.holbreich.org/category/internet/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>lsof command (Linux)</title><link>http://alexander.holbreich.org/2010/11/lsof/</link> <comments>http://alexander.holbreich.org/2010/11/lsof/#comments</comments> <pubDate>Thu, 25 Nov 2010 17:00:41 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[lsof]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=624</guid> <description><![CDATA[Today i&#8217;ll give you some interesting examples of using lsof command. lsof stands for &#8220;list open files&#8221;. So actually it shows all files used by some processes of a system. That command exist on most of and on different Linuxes and Unixes. It bases on architecture of a kernel which causes evety procces to hold it [...]]]></description> <content:encoded><![CDATA[<p><em>Today i&#8217;ll give you some interesting examples of using lsof command.</em></p><p>lsof stands for &#8220;list open files&#8221;. So actually it shows all files used by some processes of a system. That command exist on most of and on different Linuxes and Unixes.<br /> It bases on architecture of a kernel which causes evety procces to hold it used files in <em>/proc</em> &#8211; (a virtual file-system).  A typical hierarchy wold look like:</p><pre class="brush: plain; title: ; notranslate">
/proc/process id/fd/file descriptor
</pre><p>In the absence of any options,<em> lsof</em> lists all open files belonging to all active processes of a system. But that is to much for most cases, because many of cases are networkrelated. An if you consider that sockets are files in linux we can use lsof to search fo them.<span id="more-624"></span></p><h3>Examples lsof sockets</h3><p>The interesting option here is the <strong><em>-i</em></strong> option and it should be followed by the Internet address which is specified in the following form:</p><p>[<em>46</em>][<em>protocol</em>][@<em>hostname</em>|<em>hostaddr</em>][:<em>service</em>|<em>port</em>]</p><p>4 and 6 stand for ip protocol versions, the rest should be self expanded. So now i think is best time to provide some examples. Here they are:</p><p>Show all open connections</p><pre class="brush: bash; title: ; notranslate">
 lsof -i
</pre><p>Show all open TCP connections</p><pre class="brush: bash; title: ; notranslate">lsof -i TCP </pre><p>Show open TCP connection on on secure ldap port 636, http 80 and UDP protocol range</p><pre class="brush: bash; title: ; notranslate">
            lsof -i TCP:636
            lsof -i TCP:80
            lsof -i UDP:3000-3025
         </pre><p>Show LDAP incoming connections</p><pre class="brush: bash; title: ; notranslate">
lsof -i TCP@192.168.0.1:636 ()
#java  890 root  18u  IPv6 8332031
#TCP myserver.com:42936 myserver.com:ldaps (ESTABLISHED)
</pre><p>Who use SMTP?</p><pre class="brush: bash; title: ; notranslate">
         lsof -i :25
         #COMMAND  PID USER   FD   TYPE        DEVICE SIZE/OFF NODE NAME
         #sendmail 401 root    5u  IPv4 0x300023cc141      0t0  TCP *:smtp (LISTEN)
         #sendmail 401 root    6u  IPv6 0x3000243c200      0t0  TCP *:smtp (LISTEN)
</pre><h3>Further useful Examples of lsof</h3><p><strong><em> -c</em></strong> option allows to see what files are open by a particular command.</p><pre class="brush: bash; title: ; notranslate">
lsof -c mysq
lsof -c ruby
</pre><p>See what files are open by a particular device or a file</p><pre class="brush: bash; title: ; notranslate">
lsof /dev/cdrom
lsof /tmp/obscure.lock
</pre><p>See what files are opened by a user shuron</p><pre class="brush: bash; title: ; notranslate">
lsof –u shuron
#vi   5200 shuron txt REG 3,1   242601 245773 /bin/vi
</pre><h3>Additional info</h3><p>And at last use <strong><em>-r </em></strong>option for monitoring. Here is example of periodically (every 10 seconds) refresh of connection status for a concrete application started as <em>php</em>.</p><pre class="brush: bash; title: ; notranslate">
lsof -r 10 -c php -a -i :1521
</pre><p>It gives periodically all 1521 port connections. 1521 is typical Oracle DB connection port, so that example may serve you as base for script that monitors connection growing of your PHP applications.</p><p>So the last on is interesting also it uses the -t parameter which causes <em>lsof </em>return only a Processor id of a file using application. So following command allows you to kill all application that are using provided file.</p><pre class="brush: bash; title: ; notranslate">
kill -9 `lsof -t /tmp/obscure.lock`
</pre><p>References: <a href="http://www.netadmintools.com/html/lsof.man.html">Lsof Man</a></p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2010/11/lsof/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Get JIRA for 10$ only</title><link>http://alexander.holbreich.org/2010/05/use-jira/</link> <comments>http://alexander.holbreich.org/2010/05/use-jira/#comments</comments> <pubDate>Tue, 25 May 2010 21:44:45 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Software Engineering & Architecture]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[best time]]></category> <category><![CDATA[developer tools]]></category> <category><![CDATA[jira]]></category> <category><![CDATA[project tracking system]]></category> <category><![CDATA[simplicity]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=588</guid> <description><![CDATA[Probably most of modern IT related people know Atlassian JIRA &#8211; issue and project tracking system. Maybe many of you know other popular tracking system like Bugzilla, GNATS, und many many others. Personally I like JIRA last but not least because i worked many years with it and I&#8217;m impressed of a simplicity of the [...]]]></description> <content:encoded><![CDATA[<p>Probably most of modern IT related people know Atlassian JIRA &#8211; issue and project tracking system. Maybe many of you know other popular tracking system like Bugzilla, GNATS, und <a href="http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems" target="_blank">many many others</a>. Personally I like JIRA last but not least because i worked many years with it and I&#8217;m impressed of a simplicity of the work flow and the realisation of the concepts around it.</p><p>However this is not one post which should bring JIRA near to you. But if you know that you need it, now is best time to get it, because Atlassian started their &#8220;<a href="http://www.atlassian.com/software/jira/pricing.jsp" target="_blank">Get Startet</a>&#8221; Price, which now allows you to by full functional <span style="text-decoration: underline;">JIRA for 10$ for ever</span> even with one year support. All you need is a little bit of free CPU time, root access, 10$ and if you buy it outside of USA, you will need a credit card.</p><p>I installed it  for my private purposes and it works fine! I just followed Atlassian documentation (Read it carefully). Maybe, the easiest way is to install the &#8220;all in one&#8221; solution which comes with Apache Tomcat. I choosed that one. But don&#8217;t forget to switch to serious database before you start really using it. Take MySQL for example like I did.</p><p>I will not provide here step by step how to do it, because <a href="http://simon.zambrovski.org/2010/05/jira-home-improvement/" target="_blank">Simon has already</a> described some of the important configurations moments as he heard about new pricing <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> and as already mentioned the Atlassian installation guide is good and really answered all my questions.</p><p>Nevertheless feel free to ask questions here, about installation and configuration to.</p><p>Also i would like to discuss other Atlassian developer tools which also available for 10$. Is here outside someone experienced in bamboo?</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2010/05/use-jira/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>The Queen and 11 Presidents!</title><link>http://alexander.holbreich.org/2010/03/the-queen-and-11-presidents/</link> <comments>http://alexander.holbreich.org/2010/03/the-queen-and-11-presidents/#comments</comments> <pubDate>Sun, 07 Mar 2010 23:16:40 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[off topic]]></category> <category><![CDATA[history]]></category> <category><![CDATA[president]]></category> <category><![CDATA[queen]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=583</guid> <description><![CDATA[Queen Elizabeth II head of the Commonwealth and daugher of George VI. She was born on 21 April 1926 and have seen lot of politics and historical acts in her life, because now she is 84! As her father dies in 1952, she become the Queen regnant an met 11 Presidents of United States till [...]]]></description> <content:encoded><![CDATA[<p> Queen Elizabeth II head of the Commonwealth and daugher of George VI. She was born on 21 April 1926 and have seen lot of politics and historical acts in her life, because now she is 84!<br /> As her father dies in 1952, she become the Queen regnant an met 11 Presidents of United States till now:</p><p> <img class="size-full wp-image-584" title="queen" src="http://alexander.holbreich.org/wp-content/uploads/2010/03/queen.jpeg?4c9b33" alt="" width="354" height="4072" /></p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2010/03/the-queen-and-11-presidents/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <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> ]]></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> ]]></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>Polja switched too.</title><link>http://alexander.holbreich.org/2009/01/polja-switched-to-holbreichorg-too/</link> <comments>http://alexander.holbreich.org/2009/01/polja-switched-to-holbreichorg-too/#comments</comments> <pubDate>Fri, 23 Jan 2009 12:06:13 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Personal]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=276</guid> <description><![CDATA[Now Polja&#8217;s blog has also completely moved from holbreich.de to holbreich.org.  I mean of cause I did it for her, like I . Enjoy her blog!]]></description> <content:encoded><![CDATA[<p>Now <a href="http://paulina.holbreich.org">Polja&#8217;s blog</a> has also completely moved from holbreich.de to holbreich.org.  I mean of cause I did it for her, like I . Enjoy her blog!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/polja-switched-to-holbreichorg-too/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Worth of the Website</title><link>http://alexander.holbreich.org/2009/01/worth-of-the-website/</link> <comments>http://alexander.holbreich.org/2009/01/worth-of-the-website/#comments</comments> <pubDate>Sun, 18 Jan 2009 15:33:03 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[SEO]]></category> <category><![CDATA[blog rank]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[domain rank]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[interesting tools]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[money]]></category> <category><![CDATA[rank]]></category> <category><![CDATA[score]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=132</guid> <description><![CDATA[It is interesting to know how much (own) Website is worth. There are several tools on the Internet which can help you to estimate the worth of your page in money ($) but also some tools which does provide some sort of score are interesting to. I'll will share some interesting tools that can measure the potential of your site or a blog.]]></description> <content:encoded><![CDATA[<div class="mceTemp"><dl id="attachment_232" class="wp-caption alignleft" style="width: 160px;"><dt class="wp-caption-dt"><a rel="attachment wp-att-232" href="http://alexander.holbreich.org/2009/01/worth-of-the-website/seitwert/"><img class="size-thumbnail wp-image-232" title="seitwert" src="http://alexander.holbreich.org/wp-content/uploads/2009/01/seitwert-150x150.gif?4c9b33" alt="Seitwert" width="150" height="150" /></a></dt><dd class="wp-caption-dd"></dd></dl></div><p>It is interesting to know how much  (own) Website is worth. There are several tools on the Internet which can help you to estimate the worth of your page in money ($) but also some tools which does provide some sort of score are interesting to. I&#8217;ll will share some interesting tools that can measure the potential of your site or a blog.</p><h4>Glurk.com</h4><p>Interesting Web-page worth calculation witch is based on basic SEO-parameters like: Google page-rank, count of back-links, listing in Yahoo directory and so on. You can also say provide some additional or even subjective information, so e.g. count of competitors.<br /> If you like, see <a rel="nofollow" href="http://www.glurk.com/saved.php?i=33804">saved result</a> for my site.</p><h4>Snscoop.com</h4><p>Here you only need to provide your domain name. And other information will be collected and present to you automatically. Nice and handy but do not work well with sub-domains <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /></p><h4>Websitevalued.com</h4><p><a rel="nofollow" href="http://websitevalued.com/">This Service</a> is truly nice one. Good Information Presentation and the possibility to provide some data (not to much) manually, which leads to more realistic results. Definitely is worth to try it out!</p><h4>Seitwert.de</h4><p><a rel="nofollow" href="http://seitwert.de">Seitwert</a> is an very cool German service. You have to understand basic German to make the information they provide about your site make useful for you. There are six Rating:<br /> Google Rating, Alexa rating, Social bookmarks presence, technical details, Yahoo rating, an other factors.<br /> It show you the problems of your site.</p><h4>Seomoz.org</h4><p>Seomoz seemed to be fine SEO company, at least they have very nice free SEO tools. One of them &#8211; <a rel="nofollow" href="http://www.seomoz.org/trifecta/">Trifecta</a> measures so called &#8220;Page strength&#8221; of your site.<br /> You have to be registered user.</p><h4>Technorrati based -Blog worth</h4><p>And of cause the known <a rel="nofollow" href="http://www.business-opportunities.biz/projects/how-much-is-your-blog-worth/">Blog worth</a>. This rank is based on technorati rank. So you can only apply it on blogs listed on technorati.</p><h4>Mywebsiteworth.com</h4><p>Just <a rel="nofollow" href="http://www.mywebsiteworth.com/">enter your URL</a> and you will get worth in $ with not much expression. However the worth is realistic one. Where Blog Worth (See above) gets 1000$ here could be worth 50$.</p><h4>Seekbot.de</h4><p>Another useful site is german <a rel="nofollow" href="http://www.seekport.de/seekbot/">Seekbot</a>. Its not ranking and rating service . But I like to listing it here because it something useful it check your page on the fly like Seitwert.de and gives you hint, how bots do see on your site, what is bad and what is good.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/worth-of-the-website/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>My Pagerank is back!</title><link>http://alexander.holbreich.org/2009/01/my-pagerank/</link> <comments>http://alexander.holbreich.org/2009/01/my-pagerank/#comments</comments> <pubDate>Wed, 14 Jan 2009 09:23:35 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[pagerank]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=223</guid> <description><![CDATA[My google page-rank is back today. Some days ago I that blog to the new domain. I&#8217;ve placed a .htaccess redirect Rewrite Rule to the old domain to preserve some humble SEO result of this page. But for some weeks new Blog had no page-rank. Now he is here and the effect of Permanent redirect [...]]]></description> <content:encoded><![CDATA[<p>My google page-rank is back today. Some days ago I that blog to the new domain. I&#8217;ve placed a .htaccess redirect Rewrite Rule</p><p>^(.*)$ http://alexander.holbreich.org/$1 [R=301,L]</p><p>to the old domain to preserve some humble SEO result of this page. But for some weeks new Blog had no page-rank. Now he is here and the effect of Permanent redirect on google is proved!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/my-pagerank/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Folder Monitr a Flickr Upload tool</title><link>http://alexander.holbreich.org/2009/01/folder-monitr-a-flickr-upload-tool/</link> <comments>http://alexander.holbreich.org/2009/01/folder-monitr-a-flickr-upload-tool/#comments</comments> <pubDate>Sat, 10 Jan 2009 21:26:16 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[flickr]]></category> <category><![CDATA[tool]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=176</guid> <description><![CDATA[Folder Monitr allows automatically upload of Pictures to the Flickr. This tool is very useful to me because it can work automatically in the background and therefore reduce one manual step in my picture processing. So basically i can now use only Lightroom end export my developed pictures to the &#8220;watched&#8221; folder and they will [...]]]></description> <content:encoded><![CDATA[<p>Folder Monitr allows automatically upload of Pictures to the Flickr. This tool is very useful to me because it can work automatically in the background and therefore reduce one manual step in my picture processing. So basically i can now use only Lightroom end export my developed pictures to the &#8220;watched&#8221; folder and they will automatically upload to flickr in the background. All tags are taken and even Set can be specified by subfoldering, which is also cool..</p><p>There is just one drawback of this method. Uploaded images become automatically description, which say that that picture where uploaded by Folder Monitr (with a link) and a tag &#8220;FolderMonitr&#8221;. So I don&#8217;t like stuff like this. Unfortunately mass edit (or delete i my case) of tags and description is not so comfortable in flickr as it could be.</p><p>However I will use FolderMonitr further maybe the description and tag problem cannot outbalance the use of that tool.</p><p>P.S. If anybody knows the working way haw too upload pictures to flickr direct out of Lightroom in the version 2.0 is welcome to give me a hint <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> thanks!</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2009/01/folder-monitr-a-flickr-upload-tool/feed/</wfw:commentRss> <slash:comments>0</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> ]]></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>Pictures are lost</title><link>http://alexander.holbreich.org/2008/12/188/</link> <comments>http://alexander.holbreich.org/2008/12/188/#comments</comments> <pubDate>Wed, 31 Dec 2008 00:29:34 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=188</guid> <description><![CDATA[As Simon mentioned before, all pictures are lost on the blog. That is because their URL are stored as absolute path by WP which are currently refer to old domain.  Can anyone write an SQL (MySQL) procedure that looks through all post, searching for some URL lieke http://holbreich.de and then changes them to http://alexander.holbreich.org? Can [...]]]></description> <content:encoded><![CDATA[<p>As<a title="Simon Zambrovski" href="http://simon.zambrovski.org" target="_blank"> Simon </a>mentioned before, all pictures are lost on the blog.</p><p>That is because their URL are stored as absolute path by WP which are currently refer to old domain.  Can anyone write an SQL (MySQL) procedure that looks through all post, searching for some URL lieke http://holbreich.de and then changes them to http://alexander.holbreich.org?</p><p>Can anyone of the readers do somethng like this? Is there maybeeven some kind of plug-In which doe simmilar job?</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/12/188/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>WPopularity progress</title><link>http://alexander.holbreich.org/2008/07/wpopularity-progress/</link> <comments>http://alexander.holbreich.org/2008/07/wpopularity-progress/#comments</comments> <pubDate>Sun, 20 Jul 2008 09:11:44 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[wpopularity plugin wordpress]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=177</guid> <description><![CDATA[Hello friends, I&#8217;m pleasure to report progress in development of wPopularity plug-in. Yesterday I took some time just for me and wPopularity. After hours of bootstrap debugging (change, ftp upload, look ofr changes) of wPopularity I finally understood why activation problems occurred. Also I refactored the plugin. But i&#8217;m still not at the and. The [...]]]></description> <content:encoded><![CDATA[<p>Hello friends, I&#8217;m pleasure to report progress in development of wPopularity plug-in. Yesterday I took some time just for me and wPopularity.<br /> After hours of bootstrap debugging (change, ftp upload, look ofr changes) of wPopularity I finally understood why activation problems occurred.<br /> Also I refactored the plugin. But i&#8217;m still not at the and. The next released version is at least 1.0.0.  I do not plan to test it on WordPress version below 2.5.</p><p>Furthermore I took a dessision to be independet of Alex King Populatiry Contest Plugin, therefore my next Plugin version will use own DB tables. As you maybe noitice my Popular List has changed, that is because of using new tables which means drop of old popularity statistic<br /> Finaly, i consider to maintan all of my Worpdpress and similar stuff includig wPopularity on other Blog with some friend of my. Of cause I tell you about it, when it&#8217;s done.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/07/wpopularity-progress/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>12 day&#8217;s sun and sea</title><link>http://alexander.holbreich.org/2008/05/12-days-sun-and-sea/</link> <comments>http://alexander.holbreich.org/2008/05/12-days-sun-and-sea/#comments</comments> <pubDate>Sun, 25 May 2008 10:58:02 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Personal]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=171</guid> <description><![CDATA[Tonight a plane will take us to our holiday destination. That means I&#8217;m not at a PC and maybe even not reachable on telephone for at least 12 days. That is my first big holiday trip since two years, and a first holiday with my little son. Nevertheless I have some ideas on improvement of [...]]]></description> <content:encoded><![CDATA[<p>Tonight a plane will take us to our holiday destination. That means I&#8217;m not at a PC and maybe even not reachable on telephone for at least 12 days. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> That is my first big holiday trip since two years, and a first holiday with my little son.</p><p>Nevertheless I have some ideas on improvement of W-Popularity Plug-in. I think we should give up compatibility of DB-Tables with Popularity Contest Plug in. As i think that should eliminate all possible inter-operation problems with the Plug-in of Alex King, including those activation problems, some of you have report in the comments to my <font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://kvantservice.com/">???????? ????? ????????</a></font>.</p><p>I started already work on version 0.9.4 but i will release it after I&#8217;m back again.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/05/12-days-sun-and-sea/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>W-Popularity version 0.9.3</title><link>http://alexander.holbreich.org/2008/05/w-popularity-version-093/</link> <comments>http://alexander.holbreich.org/2008/05/w-popularity-version-093/#comments</comments> <pubDate>Mon, 12 May 2008 21:28:53 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[w-Popularity]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=170</guid> <description><![CDATA[&#62;??????user of my W-Popularity plugin. Some of you have pointed me to problem with activating W-Populariy plug-in in WordPress 2.5. I have fixed this problem now. Please use newest version of W-Popularity No other functionality was changed in this release.]]></description> <content:encoded><![CDATA[<p>&gt;<span style="overflow: hidden; position: absolute; height: 0pt; width: 0pt;"><a href="http://www.videnov.com/">??????</a></span>user of my W-Popularity plugin. Some of you have pointed me to problem with activating W-Populariy plug-in in WordPress 2.5.</p><p>I have fixed this problem now. Please use newest version of W-Popularity Note: There is a file embedded within this post, please visit this post to download the file.</p><p>No other functionality was changed in this release.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/05/w-popularity-version-093/feed/</wfw:commentRss> <slash:comments>20</slash:comments> </item> <item><title>What if you get google malware notification?</title><link>http://alexander.holbreich.org/2008/04/malware-notification/</link> <comments>http://alexander.holbreich.org/2008/04/malware-notification/#comments</comments> <pubDate>Sat, 26 Apr 2008 17:56:05 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[antivir]]></category> <category><![CDATA[crypted]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[google webmaster tools]]></category> <category><![CDATA[infiltration]]></category> <category><![CDATA[trojan]]></category><guid isPermaLink="false">http://alexander.holbreich.org?p=165</guid> <description><![CDATA[At first it is quite bad bad feeling. All pages of holbreich.de flow out of google index . According to Murphy&#8217;s Law that happened when I was at Project Management Seminar and therefore had no time for my personal page. Google is kindly enough to try contact you i such case, when they about to [...]]]></description> <content:encoded><![CDATA[<p>At first it is quite bad bad feeling. All pages of holbreich.de flow out of google index <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /> .  According to  Murphy&#8217;s Law  that happened when I  was at Project Management Seminar and therefore had no time for my personal page.</p><p>Google is kindly enough to try  contact you i such case, when they about to throw your site out of the index because your site is malware infected or even is a malware distributor. In such one unlucky case you get the <strong>Malware Notification</strong>. Normaly this Notification goes to following addresses of your domain.</p><ul><li>abuse@</li><li>admin@</li><li>administrator@</li><li>contact@</li><li>info@</li><li>postmaster@</li><li>support@</li><li>webmaster@</li></ul><p>Therefore you are good advised to listen to at least one of them on your own domain.</p><p>The Malware Notification Mail points you to some affected URL&#8217;s (In my case there where two). Alterantive the same information could be found in Google Webmaster Tools</p><p>As next, you have to investigate the cause of this notification and clean your site. In best case you should find and fix the bug which was used for infiltration.</p><p>As you maybe remember my side was already attacked in the past, so I do not wander as much that such thing happen. Also in my case i did found the modifications on some post, where  commented <em>iframe</em> with a linked to a bad site with and .php script was included.  Maybe just some tracking or  something like that. I wonder if  such construct works still in any modern browser, but I&#8217;m not expert in such.</p><p>However as I think I also have found the source of the problem. I do not exactly understand how could it work in my case. But i seems to be the bad Trojan (By Antivir): <strong>HTML/Crypted.Gen.</strong></p><p>Dancho Danchev describes a <a href="http://ddanchev.blogspot.com/2007/08/bank-of-india-serving-malware.html" target="_blank">similar case</a>. Maybe someone can tell me how exactly it worked in my case.</p><p>However. Now I have the newest version of WordPress, newest Version of Plug-Ins and clean posts. I have  notify Google  through Google Webmaster Tools to check my site again. Hope they&#8217;ll do it in the nearest time.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/04/malware-notification/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Back again</title><link>http://alexander.holbreich.org/2008/04/back-again/</link> <comments>http://alexander.holbreich.org/2008/04/back-again/#comments</comments> <pubDate>Wed, 16 Apr 2008 21:58:47 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[off topic]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[security]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/04/back-again/</guid> <description><![CDATA[It&#8217;s pretty difficult to start write again after such pause. My wife and my Son are away for a holidays, so I must found some time to write to my blog. But where to begin. So many thing are happened in the last time. Ok , I know I begin with the introducing of the [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s pretty difficult to start write again after such pause. My wife and my Son are away for a holidays, so I must found some time to write to my blog. But where to begin. So many thing are happened in the last time.</p><p>Ok , I know I begin with the introducing of the <a href="http://paulina.holbreich.de" title="Polja">My wife&#8217;s Blog</a>. It&#8217;s about books, travel and geography, because my darling do study at the Faculty of Geography. You might find it also interesting even when you will not find there many articles about IT <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> However her English is much better than my <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /></p><p>Back to this blog. As you know WordPress 2.5 is out. And somehow there are no security updates at that time. How it comes? Did the WordPress guys didn&#8217;t their work really good this time? <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' />   Seems to be. So I consider to upgrade in the next time.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/04/back-again/feed/</wfw:commentRss> <slash:comments>0</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> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/magento-09/feed/</wfw:commentRss> <slash:comments>0</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> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/digg-effect/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Factors of Success in Social (News) Communities</title><link>http://alexander.holbreich.org/2008/03/factors-of-success-in-social-news-communities/</link> <comments>http://alexander.holbreich.org/2008/03/factors-of-success-in-social-news-communities/#comments</comments> <pubDate>Thu, 06 Mar 2008 19:21:18 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Internet]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[community]]></category> <category><![CDATA[digg]]></category> <category><![CDATA[friendship]]></category> <category><![CDATA[news2.ru]]></category> <category><![CDATA[social network]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/factors-of-success-in-social-news-communities/</guid> <description><![CDATA[As I think there a only two main factors your success (success of your submissions) depends on. That are the quality of your stories and friendship. Yes only them two and some sub issues its quite simple. Such an statement my appear as vague for you, therefore I'll try to be more concrete. High quality stories are known as:* unique * unusual * very actual * interesting for everybody ]]></description> <content:encoded><![CDATA[<p style="font-style: italic">Initially I just wanted to report about  some experience on DIGG but then i noticed that i try to cover at least two different topics in one post, so I decided to split. In that article I will cover key factors of success on news driven Social communities like  well known DIGG and will cover my firs serious steps with DIGG in the next article.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/logo2.gif?4c9b33" alt="logo2.gif" align="right" border="0" height="80" hspace="10" vspace="10" width="72" />Currently I&#8217;m the number <strong>49</strong> of top users of the Russian DIGG sister called <a href="http://news2.ru" target="_blank">news2.ru</a>, therefore I think to have some  experience and some kind of instinctive feeling for mechanisms we have on that page. News2.ru is a typical example of social news-driven page and is quite similar to DIGG. Therefore my experience can be useful also for DIGG users and other similar Web2.0 sites.</p><h2>Success  factors of digging</h2><p>As I think there a only two main factors your success (success of your submissions) depends on. That are the <strong>quality of your stories</strong> and <strong>friendship</strong>. Yes only them two and some sub issues its quite simple. Such an statement my appear as vague for you, therefore I&#8217;ll try to be more concrete.</p><h3>High quality stories</h3><p>High quality stories are known as:</p><ul style="font-weight: bold"><li>unique</li><li>unusual</li><li>very actual</li><li>interesting for everybody</li></ul><p>That are primary properties on successful story. Now you may think that the appreciation of these attributes is highly subjective, that is partly true. However everyone can achieve good objectivity by analysing the actuality of post. E.g. U.S. President election is quite actual at the moment, Cold War maybe not. However with some experience thee appraisal of these properties will get better and better. I can say I began to feel what kind of stories can reach the TOP.</p><p>To be actual and have many stories to choose, it is recommended to subscribe to RSS feeds of news portal of your wish or several of them. If your social-community portal presents websites statistic , you  are well advised to study it and chose some with the best success rate.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/digger.jpg?4c9b33" alt="digger.jpg" align="left" border="0" height="113" hspace="10" vspace="10" width="117" /><strong>So what to do? How to begin?</strong> The answer is clear too, you just have to star and play a bit around. If you are non completely new in the field of social news community, then you just can&#8217;t leave this step out. However as already mentioned the success factor of your news will grow with experience.</p><p>It is difficult to provide some examples of good or bad news, because it&#8217;s highly depends on the time context and also other things like presentation! Presentation is one of the sub factors  I wanna  say some words about:</p><ul><li>Always use pictures! Choose them with care.</li><li>Use headlines that magnify attention (Compare: &#8220;Microsoft considers to by some Yahoo shares&#8221; vs. &#8220;Microsoft takes over Yahoo!&#8221;)</li><li>But use headlines that are precisely express what is in the content behind them. Otherwise your messages can be considered as spam or inaccurate.</li><li>Be aware of duplicates</li><li>The content at it self  should be good presented and layout carefully. Don&#8217;t write to much, but try to make your link sexy. Don&#8217;t lie.</li><li>Use the right category!</li></ul><p>Doing so you will create solid and high potential submissions, and you  has learned this, the second factor comes to a play which helps enormously to use the potential of your submissions.</p><h3>Friendship<img src="http://alexander.holbreich.org/wp-content/uploads/2008/friends_smaller.jpg?4c9b33" alt="friends_smaller.jpg" align="right" border="0" height="243" hspace="10" vspace="10" width="243" /></h3><p>If in the beginning of your &#8220;career&#8221; maybe non of your messages reach the top,  at a master level the rate of your positive submissions can rise up to 50-99 percent (depending on social service and other factors). But this success is only possible with a active circle of friends!</p><p>How to get friends on social communities? You should be able to answer this question at your-self, because it is not much different as in the real life. <span style="text-decoration: underline">Friendship grounds on mutuality and deserve much time</span>. Decide for yourself whether you are ready for it. However gaining new friends is in any case new experience and enrichment for everyone.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/factors-of-success-in-social-news-communities/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>February Statistics</title><link>http://alexander.holbreich.org/2008/03/february-statistics/</link> <comments>http://alexander.holbreich.org/2008/03/february-statistics/#comments</comments> <pubDate>Sun, 02 Mar 2008 18:54:28 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[news2.ru]]></category> <category><![CDATA[review]]></category> <category><![CDATA[statistic]]></category> <category><![CDATA[template]]></category> <category><![CDATA[visitors]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/february-statistics/</guid> <description><![CDATA[Now we step into March 2008. Here my first visitors statistic for <a href="http://holbreich.de">this blog</a>. In February there where 730 unique visitors what means round about 25 visotors a day in average. Maybe it's not so much for a professional blogger but it's OK for an amateur blogger like me. Important is the overal trend which is positiv.]]></description> <content:encoded><![CDATA[<p>Now we step into March 2008. Here my first visitors statistic for <a href="http://holbreich.de">this blog</a>. In February there where 730 unique visitors what means round about 25 visotors a day in average.</p><p>Maybe it&#8217;s not so much for a professional blogger but it&#8217;s OK for an amateur blogger like me. Important is the overal trend which is positiv.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/stats/Visitors_February.jpg?4c9b33" alt="Visitors_February.jpg" align="middle" border="0" height="125" vspace="10" width="480" /><br /> Compared to last month there where 610 visitors. Why that peak at end of January, I  before.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/stats/vesitors_january.jpg?4c9b33" alt="vesitors_january.jpg" align="middle" border="0" height="124" vspace="10" width="480" /></p><p>However if we do compare February statistic to December of last year, 730 visitors is quite a good result. In December I had only 158 visitors, of cause my blog was extremely raw at this time.</p><p><img src="http://alexander.holbreich.org/wp-content/uploads/2008/stats/Visoters_december.jpg?4c9b33" alt="Visoters_december.jpg" align="middle" border="0" height="122" vspace="10" width="480" /></p><p>Most of the users in January and February came from USA, Germany and Russian Federation.</p><h3>Most popular post in Februar</h3><ol><li>Post about  &#8211; WordPress popularity plugin with enabled &#8220;Most popular Widget&#8221; which you can see e.g. on my sidebar.</li><li>Considering about</li><li>And my  from December of the last year.</li></ol><p>May be you are wondering why my <a href="http://alexander.holbreich.orgtag/adventures/" title="My Adventures">adventures</a> has not become part three. The answer is simple I just had no time to write it down, now it&#8217;s too late <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /></p><h3>Goals for March</h3><p>First I would say, that 730 visitors is just a beginning so March should result in at least 1000 visitors. I think this is realistic if I find few hours to write good articles, which are already in my head. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> Maybe a can offer you new series of articles about mobile computing or maybe about Workflows Systems or even one of both. We&#8217;ll see.</p><p>Furthermore my wish is to adapt the current template of my blog. I would like to make it more comfortable for navigation, reading and more SEO friendly. If you have some hints for me, your comments are welcome!</p><p>At last I think it&#8217;s time to offer my rss feed through the <a href="http://alexander.holbreich.orgtag/adventures/" target="_blank" rel="nofollow">feedburner</a>, which will help me to have statistic about my feed readers.</p> ]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/february-statistics/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/71 queries in 0.068 seconds using disk: basic
Object Caching 1403/1579 objects using disk: basic

Served from: alexander.holbreich.org @ 2012-02-08 12:12:27 -->
