<?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; open source</title> <atom:link href="http://alexander.holbreich.org/tag/open-source/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>Jboss 7 setup on debian linux</title><link>http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/</link> <comments>http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/#comments</comments> <pubDate>Thu, 10 Nov 2011 20:29:33 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[JBoss]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[init.d]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[setup]]></category><guid isPermaLink="false">http://alexander.holbreich.org/?p=981</guid> <description><![CDATA[This is a short step by step explanation of the setup of JBoss 7.0.2 on your Linux (explicit debian). Nowadays there is still no official Debian package for JBoss 7 out there, so we have to do a couple of steps manually.  First i describe how to download and to prepare the jboss. Secondly we [...]]]></description> <content:encoded><![CDATA[<p><a href="http://alexander.holbreich.org/wp-content/uploads/2011/11/as7_logo.png?4c9b33"><img class="alignright size-full wp-image-1012" title="jboss7_logo" src="http://alexander.holbreich.org/wp-content/uploads/2011/11/as7_logo.png?4c9b33" alt="" width="128" height="150" /></a>This is a short step by step explanation of the setup of JBoss 7.0.2 on your Linux (explicit debian). Nowadays there is still no official Debian package for JBoss 7 out there, so we have to do a couple of steps manually.  First i describe how to download and to prepare the jboss. Secondly we do some basic configuration that you&#8217;ll be needed and at the end i will show you one of the ways to register JBoss as a service.</p><h3>1. download and prepare.</h3><p>Start by download  currently available version (7.0.2) of the JBoss 7.</p><pre class="brush: bash; title: ; notranslate">
#Web Profile version download.
wget http://download.jboss.org/jbossas/7.0/jboss-as-7.0.2.Final/jboss-as-web-7.0.2.Final.tar.gz
</pre><p>Extracting files to the final location <a title="Extracting tar, gzip, bzip2, z" href="http://alexander.holbreich.org/2009/02/tar-gzip/">using tar</a>.</p><p><span id="more-981"></span><pre class="brush: bash; title: ; notranslate">
&lt;pre&gt;tar zxvf jboss-as-web-7.0.2.Final.tar.gz -C /usr/local/
</pre><p>Now your JBoss 7 is placed inside /usr/local/jboss-as-web-7.0.2.Final/.I dont&#8217;t like that name.  It&#8217;s just cosmetics, but i prefer to rename the last part ot the path.</p><pre class="brush: bash; title: ; notranslate">
cd /usr/local/
mv jboss-as-web-7.0.2.Final/ jboss-7.0.2
</pre><p>Now important things. Some basic security and right management. I suppose  you don&#8217;t want to start your JBoss with root rights.<br /> Therefore we need to create new user and new group named  <em>jboss</em>. Make them owner of your JBoss stuff.</p><pre class="brush: bash; title: ; notranslate">
addgroup jboss
useradd -g jboss jboss
chown -R jboss:jboss /usr/local/jboss-7.0.2/
</pre><p>Your jboss 7 is almost installed now.</p><h3>2. Configuration and first test.</h3><p>Start your brand new  Jboss 7 server with:</p><pre class="brush: bash; title: ; notranslate">
sudo -u jboss sh /usr/local/jboss-7.0.2/bin/standalone.sh &amp;
</pre><p>Now it  is testable on your local machine with <em>http://localhost:8080.</em><br /> <strong>But!</strong> maybe you trying to install that jboss on remote machine and want to access this installation remotely. I that case you need to enable remote interface of your JBoss. I assume we start by standalone configuration, so  you have to edit <em>/usr/local/jboss-7.0.2/standalone/configuration/standalone.xml</em> file. The easiest way is to  find <em>&lt;interfaces&gt;</em> section and replace the 127.0.0.1 address with <em>&lt;any-address/&gt;</em></p><pre class="brush: xml; title: ; notranslate">
&lt;interfaces&gt;
   &lt;interface name=&quot;management&quot;&gt;
     &lt;any-address/&gt;
     &lt;/interface&gt;
   &lt;interface name=&quot;public&quot;&gt;
    &lt;any-address/&gt;
   &lt;/interface&gt;
 &lt;/interfaces&gt;
</pre><p>Beware with this configuration you expose also the management console to the public. The console is bounded to interface named=&#8221;management&#8221; by default.  In production environments you have to put more attention to this. but now you can access your jboss from anywhere.</p><h3>3. Jboss as Service</h3><p>Now we have a basic configured JBoss, but i want to maintain it as a service. Unfortunately Jboss archive has no predefined <em>init.d</em> scripts, so i have to to it on my own. But this is not a big problem, just straightforward following some Debian conventions and useful scripts.</p><p>Ok, let&#8217;s create jboss maintenance script.</p><pre class="brush: bash; title: ; notranslate">
touch /etc/init.d/jboss
chmod 755 /etc/init.d/jboss
</pre><p>Ready! Now put following inside.</p><pre class="brush: bash; title: ; notranslate">
#!/bin/sh
### BEGIN INIT INFO
# Provides: jboss
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Management of JBoss AS v7.x
### END INIT INFO

#Defining JBOSS_HOME
JBOSS_HOME=/usr/local/jboss-7.0.2

case &quot;$1&quot; in
start)
echo &quot;Starting JBoss AS7...&quot;
sudo -u jboss sh ${JBOSS_HOME}/bin/standalone.sh &amp;
;;
stop)
echo &quot;Stopping JBoss AS7...&quot;
sudo -u jboss sh ${JBOSS_HOME}/bin/jboss-admin.sh --connect command=:shutdown
;;
log)
echo &quot;Showing server.log...&quot;
tail -1000f ${JBOSS_HOME}/standalone/log/server.log
;;
*)
echo &quot;Usage: /etc/init.d/jboss {start|stop|log}&quot;
exit 1
;; esac
exit 0
</pre><p>This file is ready to use. You can use it self for manual start and stop of your jboss, you also can follow the server.log by using &#8220;log&#8221; parameter.<br /> But let&#8217;s make it to the end, as an automatic starting service. It&#8217;s easy with update-rc.d script:</p><pre class="brush: bash; title: ; notranslate">
update-rc.d jboss defaults
</pre><p>Now your ready and your JBoss will be shutdown on machine shutdown and it should start on machine start-up.</p><p>Of course this is not the only way to start using JBoss 7. Your ideas are welcome!</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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;t=Jboss%207%20setup%20on%20debian%20linux"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;t=Jboss%207%20setup%20on%20debian%20linux"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux&amp;bodytext=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;t=Jboss%207%20setup%20on%20debian%20linux&amp;s=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;Title=Jboss%207%20setup%20on%20debian%20linux"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2011%2F11%2Fjboss-7-setup-linux%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%2F2011%2F11%2Fjboss-7-setup-linux%2F&title=Jboss%207%20setup%20on%20debian%20linux"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;t=Jboss%207%20setup%20on%20debian%20linux"></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%2F2011%2F11%2Fjboss-7-setup-linux%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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux&amp;selection=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-981')" id="sociable-post-981" 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=Jboss%207%20setup%20on%20debian%20linux%20-%20http%3A%2F%2Falexander.holbreich.org%2F2011%2F11%2Fjboss-7-setup-linux%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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux&amp;notes=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux&amp;annotation=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></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=Jboss%207%20setup%20on%20debian%20linux&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=This%20is%20a%20short%20step%20by%20step%20explanation%20of%20the%20setup%20of%20JBoss%207.0.2%20on%20your%20Linux%20%28explicit%20debian%29.%20Nowadays%20there%20is%20still%20no%20official%20Debian%20package%20for%20JBoss%207%20out%20there%2C%20so%20we%20have%20to%20do%20a%20couple%20of%20steps%20manually.%C2%A0%20First%20i%20describe%20how%20to%20dow"></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=Jboss%207%20setup%20on%20debian%20linux&body=http%3A%2F%2Falexander.holbreich.org%2F2011%2F11%2Fjboss-7-setup-linux%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-981')"><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-981',true)" class="close"> <img onclick="hide_sociable('post-981',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="Jboss 7 setup on debian linux - http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/" 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/2011/11/jboss-7-setup-linux/" 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%2F2011%2F11%2Fjboss-7-setup-linux%2F&amp;title=Jboss%207%20setup%20on%20debian%20linux'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/&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/2011/11/jboss-7-setup-linux/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2011/11/jboss-7-setup-linux/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Magento 0.9&#8230;.</title><link>http://alexander.holbreich.org/2008/03/magento-09/</link> <comments>http://alexander.holbreich.org/2008/03/magento-09/#comments</comments> <pubDate>Sun, 30 Mar 2008 22:54:44 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[commerce platform]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[magento]]></category> <category><![CDATA[online shop]]></category> <category><![CDATA[open source]]></category><guid isPermaLink="false">http://alexander.holbreich.org2008/03/magento-09/</guid> <description><![CDATA[Yesterday I tried Magento again. As I tried it it was a very very slow and buggy CMS. However last days I played with the brand new Version 0.9.17740 of Magento E-Commerce Solution and I was positive impressed. There are only few bugs remained in that late version, even if I was still able to [...]]]></description> <content:encoded><![CDATA[<p>Yesterday I tried <a href="http://magentocommerce">Magento</a> again. As I tried it  it was a very very slow and buggy CMS. However last days I played with the brand new Version 0.9.17740 of Magento E-Commerce Solution and I was positive impressed.</p><p>There are only few bugs remained in that late version, even if I was still able to find some of them.  Furthermore Magento-people have really speed their System up, which was enormously important to my eyes. So now it seems that Magento becomes really competitive E Commerce Platform and that is just great! If the development goes so further on. None of the competing Systems will survive. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /></p><p>However one need much time to get familiar with Magento. That platform brings very much functionality and configuration options, so configuring Magento can become a new Profession! <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_wink.gif?4c9b33" alt=';)' class='wp-smiley' /> Unfortunately Configuration Options are just sparse documented at that point, so there is bunch of try and error till one can get his first Online-Shop of dreams.</p><p>On the other side Magento has growing online Community, which is effect more worth as full documentation. <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /></p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9...."></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9...."></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9...."></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;bodytext=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9....&amp;s=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;Title=Magento%200.9...."></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&title=Magento%200.9...."></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;t=Magento%200.9...."></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;selection=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-163')" id="sociable-post-163" style="display:none;"><div style="top: auto; left: auto; display: block;" id="sociable"><div class="popup"><div class="content"><ul><li style="heigth:16px;width:16px"><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Magento%200.9....%20-%20http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;notes=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....&amp;annotation=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Magento%200.9....&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Yesterday%20I%20tried%20Magento%20again.%20As%20I%20tried%20it%20%20it%20was%20a%20very%20very%20slow%20and%20buggy%20CMS.%20However%20last%20days%20I%20played%20with%20the%20brand%20new%20Version%200.9.17740%20of%20Magento%20E-Commerce%20Solution%20and%20I%20was%20positive%20impressed.%0D%0A%0D%0AThere%20are%20only%20few%20bugs%20remained%20in"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Magento%200.9....&body=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&ui=2&tf=1&shva=1"></a></li><li style="heigth:16px;width:16px"><a style="cursor:poainter" rel="nofollow"   onMouseOver="more(this,'post-163')"><img src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/option1/16/more.png?4c9b33" title="Posterous" alt="Posterous" /></a></li></ul></div> <a style="cursor:pointer" onclick="hide_sociable('post-163',true)" class="close"> <img onclick="hide_sociable('post-163',true)" title="close" src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/closelabel.png?4c9b33"> </a></div></div></div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Magento 0.9.... - http://alexander.holbreich.org/2008/03/magento-09/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2008/03/magento-09/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2008/03/magento-09/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2008%2F03%2Fmagento-09%2F&amp;title=Magento%200.9....'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2008/03/magento-09/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2008/03/magento-09/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2008/03/magento-09/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2008/03/magento-09/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Magento</title><link>http://alexander.holbreich.org/2007/12/magento/</link> <comments>http://alexander.holbreich.org/2007/12/magento/#comments</comments> <pubDate>Sun, 09 Dec 2007 17:20:07 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[magento]]></category> <category><![CDATA[online shop]]></category> <category><![CDATA[open source]]></category><guid isPermaLink="false">http://alexander.holbreich.org2007/12/magento/</guid> <description><![CDATA[I&#8217;ve tried out some of commercial shops and also some open source like osCommerce, but I forgot them when i saw Magento. It does not impress with easy installation or intuitive configuration, or even speed. No, no, that are not advantages of Magento, but at first disadvantages. But nevertheless that osCommers systems captures my primary [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve tried out some of <a href="http://alexander.holbreich.org2007/11/good-php-online-shop-for-money/">commercial shops</a> and also some open source like <a href="http://alexander.holbreich.org2007/11/closer-look-at-oscommerce/">osCommerce</a>, but I forgot them when i saw <a href="http://www.magentocommerce.com/">Magento</a>. It does not impress with easy installation or intuitive configuration, or even speed. No, no, that are not advantages of Magento, but at first disadvantages. But nevertheless that osCommers systems captures my primary interest. So why?</p><p>It is done professional! Yes, in my opinion that describes all advantages of that shop short. Cause in comparison to others shop systems it offers very much functionality and flexibility out of the box, combined with good looking default template. Just visit the <a href="http://demo.magentocommerce.com/">demo-shop</a> of Magento to see it self. I will not describe every detail of Magento here, cause it was done many times before, like <a href="http://blog.techdivision.com/magento-%E2%80%93-revolution-im-ecommerce/">that article</a>, which describes (in German) why Magento is flexible, self-contained, individual, and is prepared for the future. But the best impression you can make by trying it out. I tried it for you and i can point some disadvantages to.</p><p>The greatest disadvantage of that system is that its powered by <a href="http://framework.zend.com/">Zend Framework</a>. Wait! You are Zend Framework evangelist? Let me explain. I don&#8217;t say that Zend Framework is bad, no i say &#8211; <strong>it&#8217;s slow</strong> <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_smile.gif?4c9b33" alt=':)' class='wp-smiley' /> ! Of cause it may be that Magento is so bad written on that brilliant framework making it, so slow, i don&#8217;t know, but it is really, really slow on normal PHP without Zend engine. And it&#8217;s don&#8217;t comes out with standard 8Mb configuration of your PHP engine, it needs at least 20Mb, otherwise it not works.</p><p>And of cause you need some not ever usual extensions of your PHP (which is PHP 5.2.0 or newer):</p><ul><li>PDO/MySQL</li><li>MySQLi</li><li>mcrypt</li><li>mhash</li><li>simplexml</li><li>DOM</li></ul><p>I called my host provider before a had all required addons. But i was supported by good installation routine in this exercise.</p><p>Further my shop installation was not such intuitive as it can be in the admin area, but it&#8217;s OK, cause there are really many configuration possibilities that have to be placed somewhere. I think it will mature in the future and is not so relevant at all ,cause admins will learn how to configure Magento, but customer will/must not learn it. And precisely customers will like your Magento usability, i think.</p><p>Last but not least my version (0.6.13&#8230;) of Magneto was pretty buggy. After doing some configuration steps in admin area the store produces errors (Zend Framework pointed me to SQL Errors) and was no more functional anymore <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.gif?4c9b33" alt=':(' class='wp-smiley' /> . That are of cause teething problems, that are possibly already fixed in the <a href="http://www.magentocommerce.com/download/release_notes#Release%20Notes%20-%20Magento%20Preview%200.6.14100%20%28December%204,%202007%29">new Version</a>: &#8220;<span style="font-style: italic">&#8230; Fixed few database foreign keys problems &#8230;</span>&#8220;.</p><p>Finally i would say, that Magento is best online shop system that i know at the moment, i will stay watching Magento development and will try out newer matured versions.  But at the moment Magento is not really ready for productive run, especially the slowness of the systen  is  greatest disadvantage of Magento for me.</p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento"></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento"></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento"></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;bodytext=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento&amp;s=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;Title=Magento"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&title=Magento"></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;t=Magento"></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;selection=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-112')" id="sociable-post-112" style="display:none;"><div style="top: auto; left: auto; display: block;" id="sociable"><div class="popup"><div class="content"><ul><li style="heigth:16px;width:16px"><a title="Twitter" class="option1_16" style="background-position:-144px -16px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Magento%20-%20http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;notes=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento&amp;annotation=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Magento&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=I%27ve%20tried%20out%20some%20of%20commercial%20shops%20and%20also%20some%20open%20source%20like%20osCommerce%2C%20but%20I%20forgot%20them%20when%20i%20saw%20Magento.%20It%20does%20not%20impress%20with%20easy%20installation%20or%20intuitive%20configuration%2C%20or%20even%20speed.%20No%2C%20no%2C%20that%20are%20not%20advantages%20of%20Magento%2C"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Magento&body=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&ui=2&tf=1&shva=1"></a></li><li style="heigth:16px;width:16px"><a style="cursor:poainter" rel="nofollow"   onMouseOver="more(this,'post-112')"><img src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/option1/16/more.png?4c9b33" title="Posterous" alt="Posterous" /></a></li></ul></div> <a style="cursor:pointer" onclick="hide_sociable('post-112',true)" class="close"> <img onclick="hide_sociable('post-112',true)" title="close" src="http://alexander.holbreich.org/wp-content/plugins/sociable/images/closelabel.png?4c9b33"> </a></div></div></div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Magento - http://alexander.holbreich.org/2007/12/magento/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2007/12/magento/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2007/12/magento/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F12%2Fmagento%2F&amp;title=Magento'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2007/12/magento/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2007/12/magento/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2007/12/magento/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2007/12/magento/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Closer look at osCommerce</title><link>http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/</link> <comments>http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/#comments</comments> <pubDate>Mon, 05 Nov 2007 20:04:25 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[online shop]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[osCommerce]]></category><guid isPermaLink="false">http://alexander.holbreich.org2007/11/closer-look-at-oscommerce/</guid> <description><![CDATA[At 19:00 Everybody who ever searched for open source online shop system have heard about osCommerce. My first installation of this online shop was at least two years ago. For two years that system does not much impression on me, but i will install it again and try it out, cause it might be the [...]]]></description> <content:encoded><![CDATA[<p><span style="font-weight: bold">At 19:00</span></p><p>Everybody who ever searched for open source online shop system have heard about <a href="http://www.oscommerce.org/">osCommerce</a>. My first installation of this online shop was at least two years ago. For two years that system does not much impression on me, but i will install it again and try it out, cause it might be the one of the mightiest shop systems on the web (please correct me if you know better ones). Of cause mighty is not automatically good.</p><p>OsCommerece is based on PHP and MYSQL, the advantages of that are clear for every blogger. But there may be also many disadvantages that of such constellation. But they are not the theme of that article.</p><p style="font-weight: bold">19:30</p><p>I have downloaded  osCommerce v2.2 rc1. And now it&#8217;s in uploading process. That takes pretty much time, cause there are many files in the base already in the base installation. So there was time to check mails and write this post till here in parallel.</p><p><strong>19:45 </strong></p><p>Upload is ready. Begin of setup&#8230;</p><p><strong>1</strong><strong>9:46 </strong></p><p>Cool I like it. Nice Ajax front end provides possibility to setup DB credentials and server-path. After that you are able to set up the Store Name, Store owner name and password.</p><p>That&#8217;s it.</p><p><strong>19:50 </strong></p><p>I can start play around. I see that default template that makes me ill&#8230; But let&#8217;s continue.</p><p><strong>20:20 </strong></p><p>First impressions. Not bad, but also not so good. The base installation has awful template. But it works and brings already in base installation enough functionality to use shop productive. Functionality at glance:</p><ul><li>Support of Products  and product categories.</li><li>HTML based Product description.</li><li>Definition of product attributes. That nice and allows user to define some characteristics of product  instead of  defining thousands of products with few varieties.</li><li>Support of manufacturers management.</li><li>Supports of bargain offers is nice to, but is may be to simple.</li><li>Tax calculation support.</li><li>Many payment possibilities, that can be enabled in the admin console.</li><li>and other things like &#8220;awaited products&#8221; or user evaluation.</li></ul><p>All in one the osCommerce system appears to me to be usable. Of cause with other template and maybe some additional  plug-ins.</p><p>On the osCommerce site you can read about thousands of plug-ins, handling every situation of life. OK, i have to search them, then base functionality is not enough for my needs. Especially reporting system is not really provided in base version. But i need one extended in any case.</p><p><span style="font-weight: bold">20:45</span></p><p>Thanks for your attention! I&#8217;m gone to search for new templates and useful plug-ins.</p><p>P.S. Please give me hints about other online shop systems and links to good osCommerce plug-ins!</p><div class="sociable"><div class="sociable_tagline"><a class='sociable_tagline' target='_blank' href='http://blogplay.com' style='font-size:11px;color:#333333;text-decoration:none'>Be Sociable, Share!</a></div><ul class='clearfix'><li><a title="Facebook" class="option1_16" style="background-position:-48px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;t=Closer%20look%20at%20osCommerce"></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;t=Closer%20look%20at%20osCommerce"></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce"></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce&amp;bodytext=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;t=Closer%20look%20at%20osCommerce&amp;s=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;Title=Closer%20look%20at%20osCommerce"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&title=Closer%20look%20at%20osCommerce"></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;t=Closer%20look%20at%20osCommerce"></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce&amp;selection=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-110')" id="sociable-post-110" 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=Closer%20look%20at%20osCommerce%20-%20http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce&amp;notes=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce&amp;annotation=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></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=Closer%20look%20at%20osCommerce&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=At%2019%3A00%0D%0A%0D%0AEverybody%20who%20ever%20searched%20for%20open%20source%20online%20shop%20system%20have%20heard%20about%20osCommerce.%20My%20first%20installation%20of%20this%20online%20shop%20was%20at%20least%20two%20years%20ago.%20For%20two%20years%20that%20system%20does%20not%20much%20impression%20on%20me%2C%20but%20i%20will%20install"></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=Closer%20look%20at%20osCommerce&body=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%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-110')"><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-110',true)" class="close"> <img onclick="hide_sociable('post-110',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="Closer look at osCommerce - http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F11%2Fcloser-look-at-oscommerce%2F&amp;title=Closer%20look%20at%20osCommerce'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2007/11/closer-look-at-oscommerce/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>I was hacked, thank open source</title><link>http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/</link> <comments>http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/#comments</comments> <pubDate>Fri, 13 Jul 2007 14:50:02 +0000</pubDate> <dc:creator>shuron</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[security]]></category><guid isPermaLink="false">http://alexander.holbreich.org2007/07/i-was-hacked-thank-open-source/</guid> <description><![CDATA[Maybe you notice the downtime of this site last days. Unfortunately it was hacked by someone for unknown purpose. The attackers uses some exploit in wordpress or some plug in or maybe of k2 theme. Some malfunction of these open source components was used out, so that attacker have added lines like echo passthru($_GET[1]); to [...]]]></description> <content:encoded><![CDATA[<p>Maybe you notice the downtime of this site last days. Unfortunately it was hacked by someone for unknown purpose. The attackers uses some exploit in wordpress or some plug in or maybe of k2 theme. Some malfunction of these open source components was used out, so that attacker have added lines like</p><p><em>echo passthru($_GET[1]);</em></p><p>to some of php files. That gives them access to shell of my user account on this server. Bad thing it that other domains of mine where affected too. The &#8220;Forbidden&#8221; you probably have seen, was initiated by my server administrator to prevent broadening<noscript>&amp;lt;a href=&#8221;http://www.flintgraphics.com&#8221; mce_href=&#8221;http://www.flintgraphics.com&#8221;&amp;gt;free ringtones&amp;lt;/a&amp;gt; for 1 minute.</noscript> of the attack.</p><p>I could not find the exactly place of the initial exploit yet. But attackers have left many of traces. So that I was able to reconstruct the rest and remove backdoors. This was a new experience, especially I learned in seconds, that it is better to separate my popular projects from insecure open source playgrounds, like this site actually is.</p><p>And on holbreich .de i turned all possible security mechanisms on, till final clarification is done. So you can&#8217;t leave comments at the moment cause we are still under carnitine!</p><p>P.S. That hackers left some strange move on one of my domains for download to use out the traffic and space. Some was some strange comedy about two gay man. It was in some strange language, so I could not laugh <img src="http://alexander.holbreich.org/wp-includes/images/smilies/icon_sad.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%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;t=I%20was%20hacked%2C%20thank%20open%20source"></a></li><li><a title="HackerNews" class="option1_16" style="background-position:-128px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;t=I%20was%20hacked%2C%20thank%20open%20source"></a></li><li><a title="Reddit" class="option1_16" style="background-position:-64px -16px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source"></a></li><li><a title="Digg" class="option1_16" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source&amp;bodytext=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li><li><a title="Tumblr" class="option1_16" style="background-position:-128px -16px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;t=I%20was%20hacked%2C%20thank%20open%20source&amp;s=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li><li><a title="BlinkList" class="option1_16" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;Title=I%20was%20hacked%2C%20thank%20open%20source"></a></li><li><a title="Google Reader" class="option1_16" style="background-position:-112px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source&amp;srcURL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;srcTitle=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse"></a></li><li><a title="StumbleUpon" class="option1_16" style="background-position:-112px -16px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&title=I%20was%20hacked%2C%20thank%20open%20source"></a></li><li><a title="Myspace" class="option1_16" style="background-position:0px -16px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;t=I%20was%20hacked%2C%20thank%20open%20source"></a></li><li><a title="Sphinn" class="option1_16" style="background-position:-96px -16px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F"></a></li><li><a class="option1_16" style="cursor:pointer;background-position:-64px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li><li><a title="Posterous" class="option1_16" style="background-position:-32px -16px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source&amp;selection=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-96')" id="sociable-post-96" 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=I%20was%20hacked%2C%20thank%20open%20source%20-%20http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F%20(via%20@sociablesite)"></a></li><li style="heigth:16px;width:16px"><a title="LinkedIn" class="option1_16" style="background-position:-144px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source&amp;source=Alexander+Holbreich+Everything+becomes+a+little+different+as+soon+as+it+is+spoken+out+loud.++%7EHermann+Hesse&amp;summary=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li><li style="heigth:16px;width:16px"><a title="Delicious" class="option1_16" style="background-position:-16px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source&amp;notes=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li><li style="heigth:16px;width:16px"><a title="Google Bookmarks" class="option1_16" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source&amp;annotation=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li><li style="heigth:16px;width:16px"><a title="MSNReporter" class="option1_16" style="background-position:-176px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=I%20was%20hacked%2C%20thank%20open%20source&amp;URL=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Maybe%20you%20notice%20the%20downtime%20of%20this%20site%20last%20days.%20Unfortunately%20it%20was%20hacked%20by%20someone%20for%20unknown%20purpose.%20The%20attackers%20uses%20some%20exploit%20in%20wordpress%20or%20some%20plug%20in%20or%20maybe%20of%20k2%20theme.%20Some%20malfunction%20of%20these%20open%20source%20components%20was%20"></a></li><li style="heigth:16px;width:16px"><a title="email" class="option1_16" style="background-position:-80px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=I%20was%20hacked%2C%20thank%20open%20source&body=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%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-96')"><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-96',true)" class="close"> <img onclick="hide_sociable('post-96',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="I was hacked, thank open source - http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/ (via #sociablesite)" data-url="http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js?4c9b33"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/" size="medium"></g:plusone></li><li id="Digg_Counter"><script type='text/javascript'>(function(){var s=document.createElement('SCRIPT'),s1=document.getElementsByTagName('SCRIPT')[0];s.type='text/javascript';s.async=true;s.src='http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s,s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Falexander.holbreich.org%2F2007%2F07%2Fi-was-hacked-thank-open-source%2F&amp;title=I%20was%20hacked%2C%20thank%20open%20source'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/"></script></li><li id="Facebook_Counter"><iframe src="//www.facebook.com/plugins/like.php?href=http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/" data-counter="right"></script></li></ul></div>]]></content:encoded> <wfw:commentRss>http://alexander.holbreich.org/2007/07/i-was-hacked-thank-open-source/feed/</wfw:commentRss> <slash:comments>1</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/28 queries in 0.030 seconds using disk: basic
Object Caching 871/929 objects using disk: basic

Served from: alexander.holbreich.org @ 2012-02-04 20:16:55 -->
