<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-31141918</id><updated>2012-02-07T00:24:33.325-08:00</updated><category term='opensef'/><category term='problems'/><category term='mysql'/><category term='php'/><category term='joomla'/><category term='optimization'/><title type='text'>Alfim's blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-31141918.post-6806317830583855675</id><published>2007-04-19T07:22:00.000-07:00</published><updated>2007-04-19T07:28:23.829-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='joomla'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='optimization'/><title type='text'>Joomla’s non-optimized search in content.searchbot.php</title><content type='html'>&lt;p&gt;Hi, All!&lt;/p&gt;Recently I faced a MySQL replication lag time problem. From time to time it increased dramatically (up to 200 sec’s) on new boxes (there are 4 boxes in cluster beyond load balancer) with 4Gb of RAM and really-really nice CPUs.  I had to enable slow queries logging to figure out what was causing the problem.&lt;br /&gt;&lt;br /&gt;Okay, the slowest query was…. yeah, in search subsystem...&lt;br /&gt;&lt;br /&gt;&lt;a href="http://custompcsoftware.com/blog/2007/04/19/joomlas-non-optimized-search-in-contentsearchbotphp/trackback/"&gt;Read more&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-6806317830583855675?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/6806317830583855675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=6806317830583855675' title='21 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/6806317830583855675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/6806317830583855675'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2007/04/joomlas-non-optimized-search-in.html' title='Joomla’s non-optimized search in content.searchbot.php'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>21</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31141918.post-4550126307702536465</id><published>2007-03-06T04:39:00.000-08:00</published><updated>2007-03-08T11:14:41.829-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='joomla'/><category scheme='http://www.blogger.com/atom/ns#' term='problems'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='opensef'/><title type='text'>OpenSEF RC5 SP2 Perfomance Improvement</title><content type='html'>&lt;p&gt;Hi, all!&lt;br /&gt;&lt;br /&gt;Recently I’ve rewritten a pretty large site on Joomla (it has about 200 online users all the time, as Joomla backend stats shows, &gt;17000 content items etc.) and noticed that the page generation time started to grow ftom 0.101 secs to 0.5 after the first day, 0.7 - 1 next day…). Not very good, right? First of all I went to the MySQL console at the time of high loads and… voila - there is a `opensef_sef` MySQL query present almost constantly. Guys, can anybody explain me why do they fetch into the memory almost all records in sef.php [Line #173]:&lt;/p&gt;&lt;br /&gt;&lt;blockquote&gt;if ($sefSite-&gt;id == null) $sefSite-&gt;id = -1;&lt;br /&gt;$query = “SELECT * FROM #__opensef_sef WHERE published = ‘1′” .&lt;br /&gt;“\nAND valid = ‘1′” .&lt;br /&gt;“\nAND (direction IS NULL OR direction = ‘’ OR direction = ‘o’)” .&lt;br /&gt;“\nAND (site_id IS NULL ” .&lt;br /&gt;($sefSite-&gt;id ? ‘ OR site_id = ‘ . $sefSite-&gt;id : ‘’) . ‘)’ .&lt;br /&gt;“\nORDER BY site_id DESC, published DESC, valid DESC, LENGTH(direction) DESC”;&lt;br /&gt;$database-&gt;setQuery( $query );&lt;br /&gt;if ($database-&gt;loadResult()) {&lt;br /&gt;$opensef_aliases = $database-&gt;loadObjectList();&lt;br /&gt;}&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;A quick fix is to replace the query with this one:&lt;blockquote&gt;if ($sefSite-&gt;id == null) $sefSite-&gt;id = -1;&lt;br /&gt;$query = “SELECT * FROM #__opensef_sef WHERE published = ‘1′” .&lt;br /&gt;“\nAND valid = ‘1′” .&lt;br /&gt;“\nAND (direction IS NULL OR direction = ‘’ OR direction = ‘o’)” .&lt;br /&gt;“\nAND (site_id IS NULL ” .&lt;br /&gt;($sefSite-&gt;id ? ‘ OR site_id = ‘ . $sefSite-&gt;id : ‘’) . ‘)’ .&lt;br /&gt;“\nAND (external=’{$_SERVER[’REQUEST_URI’]}’” .&lt;br /&gt;“\nORDER BY site_id DESC, published DESC, valid DESC, LENGTH(direction) DESC”;&lt;br /&gt;$database-&gt;setQuery( $query );&lt;br /&gt;if ($database-&gt;loadResult()) {&lt;br /&gt;$opensef_aliases = $database-&gt;loadObjectList();&lt;br /&gt;}&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;After that, find the lookupOutgoing function  in administrator/components/com_sef/sef.class.php and replace it with this one:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;function lookupOutgoing(  $site_id, $url ) { // static method&lt;br /&gt;       global $opensef_aliases, $database;&lt;br /&gt;&lt;br /&gt;       $returnaliases = array();&lt;br /&gt;/*&lt;br /&gt;       if ($site_id == null) $site_id = -1;&lt;br /&gt;       if (count($opensef_aliases) &gt; 0)        {&lt;br /&gt;       foreach($opensef_aliases as $aliases){&lt;br /&gt;                       if ( $aliases-&gt;internal == $url ) {&lt;br /&gt;                               $returnaliases[] = $aliases;&lt;br /&gt;                       }&lt;br /&gt;               }&lt;br /&gt;       }&lt;br /&gt;*/&lt;br /&gt;     if (!count($returnaliases))&lt;br /&gt;     {&lt;br /&gt;         $query = "SELECT * FROM #__opensef_sef WHERE published = '1'" .&lt;br /&gt;         "\nAND valid = '1'" .&lt;br /&gt;         "\nAND (direction IS NULL OR direction = '' OR direction = 'o')" .&lt;br /&gt;         "\nAND internal='$url'".&lt;br /&gt;         "\nORDER BY site_id DESC, published DESC, valid DESC, LENGTH(direction) DESC limit 1";&lt;br /&gt;&lt;br /&gt;         $database-&gt;setQuery( $query );&lt;br /&gt;         if ($database-&gt;loadResult())&lt;br /&gt;         {&lt;br /&gt;           $aliases = $database-&gt;loadObjectList();&lt;br /&gt;           foreach($aliases as $k=&gt;$val)&lt;br /&gt;           {&lt;br /&gt;             $returnaliases[] = $val;&lt;br /&gt;           }&lt;br /&gt;         }&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt;     if (is_array( $returnaliases ) &amp;&amp;amp; count( $returnaliases )) {&lt;br /&gt;     $returnaliases = xclCastObjectList( $returnaliases, 'JosOpenSEFAlias' );&lt;br /&gt;     return $returnaliases[0];&lt;br /&gt;   }&lt;br /&gt;   $null = null;&lt;br /&gt;   return $null;&lt;br /&gt; }&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Hurray! It works as a charm. Page generation time is now 0.07 seconds.&lt;br /&gt;&lt;br /&gt;Hope this will help somebody else.&lt;br /&gt;&lt;br /&gt;Thanks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-4550126307702536465?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/4550126307702536465/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=4550126307702536465' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/4550126307702536465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/4550126307702536465'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2007/03/opensef-rc5-sp2-perfomance-improvement.html' title='OpenSEF RC5 SP2 Perfomance Improvement'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31141918.post-116431871190119007</id><published>2006-11-23T13:47:00.000-08:00</published><updated>2006-11-23T13:53:59.213-08:00</updated><title type='text'>Adsensers or "What's next?"</title><content type='html'>This is just a copy of my post. Original &lt;a href="http://custompcsoftware.com/blog/2006/11/20/adsensers-or-whats-next/"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Have you evere thought about web without advertisement? Don't you think it's possible? May be yes, may be no. But we have to give it a try...&lt;/p&gt;&lt;p&gt;Few years ago I was surprised seeing somebodies project with 3 blocks of google-like ads. "What's that?", - I thought, "Where is the content?". Affiliate links and text ads made up to 80% of the site. It was unusual for 2001-2002 years. But now thousands of web-projects turned from good nice looking source of interesting news etc. into ugly monsters where one should search for the info he came for. And there is a tendence: as more popular is website as more banners it has. Ads on the top, ads on the left, right, bottom and even inside the content! That's ugly! Pretty project becomes to look like a dirty chicken.&lt;/p&gt;&lt;p&gt;Yes, I understand that is a way to earn some money. But guys, why don't you try to sell your content itself instead of selling your luck? "May be somebody will click the links and I'll get a cent... or even dollar!". People, please try to forget about that. I see more and more adsense-fishing sites without any sort of own content. With such a tendency our children have good chance to get web without something outdated earlier know as "good content". Even now advertising of advertising is not astonishing.&lt;/p&gt;&lt;p&gt;Why am I writing this? I don't expect wellknown bloggers and webmasters to remove superfluous. But I hope somebody (even if he'll be one of a thousand) will read the post and decide to leave only one adsense block on the site instead of putting it everywhere.&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-116431871190119007?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/116431871190119007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=116431871190119007' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116431871190119007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116431871190119007'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2006/11/adsensers-or-whats-next.html' title='Adsensers or &quot;What&apos;s next?&quot;'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31141918.post-116401914571744186</id><published>2006-11-20T02:34:00.000-08:00</published><updated>2006-11-23T13:53:01.316-08:00</updated><title type='text'>Moving to .com domain</title><content type='html'>Hi, all. I'm moving from blogger.com to my .com domain, so mainly posts will be published there. I'll try to keep this one posted, but if you're interested change bookmarks to &lt;a href="http://custompcsoftware.com/blog/"&gt;custompcsoftware.com&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-116401914571744186?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/116401914571744186/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=116401914571744186' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116401914571744186'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116401914571744186'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2006/11/moving-to-com-domain.html' title='Moving to .com domain'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31141918.post-116360549058312981</id><published>2006-11-15T07:16:00.000-08:00</published><updated>2006-11-15T08:05:15.183-08:00</updated><title type='text'>Joomla again.</title><content type='html'>Hi, all!&lt;br/&gt;&lt;br/&gt;I was happy to realize people are reading &lt;a href="http://alfim.blogspot.com/2006/11/joomla-vs-drupal.html"&gt;my article about Joomla&lt;/a&gt; and even &lt;a href="http://digg.com/software/Pakt_CMS_prize_awarded_Joomla_edges_out_Drupal_in_a_tie_breaker"&gt;refer&lt;/a&gt; to it. Just FYI: I'm working on the second part of that post, hope you'll be interested in it too.&lt;br/&gt;&lt;br/&gt;For now I'd like to ask Joomla and &lt;a href="http://opera.com"&gt;Opera&lt;/a&gt; users whether I'm the only who experience high processor load while viewing some of Joomla sites like &lt;a href="http://dev.joomla.org/component/option,com_jd-wp/Itemid,33/p,221/"&gt;Joomla! Developer network&lt;/a&gt;. Move your mouse over the page -- and the processor load jumps up to 100%. I use Win2k sp4 and Opera 9.00. Any ideas?&lt;br/&gt;&lt;br/&gt;Thanks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-116360549058312981?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/116360549058312981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=116360549058312981' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116360549058312981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116360549058312981'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2006/11/joomla-again.html' title='Joomla again.'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31141918.post-116337189904135260</id><published>2006-11-12T14:38:00.000-08:00</published><updated>2006-11-16T08:12:17.146-08:00</updated><title type='text'>Joomla vs Drupal?</title><content type='html'>Recently I was asked to write a review for CMS of best-choice. It's full text is below, so you can check and leave comments.&lt;br/&gt;&lt;br/&gt;&lt;strong&gt;What CMS to choose?&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Well, let’s begin from the beginning. What are the most possible candidates? Drupal (&lt;a href="http://drupal.org"&gt;http://drupal.org&lt;/a&gt;), Joomla (&lt;a href="http://joomla.org"&gt;http://joomla.org&lt;/a&gt;) and Wordpress (&lt;a href="http://wordpress.org"&gt;http://wordpress.org&lt;/a&gt; – YES! I’m not mistaken, WordPress can be used as CMS). These projects beat anything else I know.&lt;br/&gt;&lt;br/&gt;I’d like to begin from the Wordpress. The subject is well-known as blogging engine, but only a few people know it can be used as CMS. Here is what John McCreesh wrote at ONLamp.com:&lt;br/&gt;&lt;blockquote&gt;Could WordPress be used for full-blown websites as well as blogs? I believe the answer is definitely yes. WordPress lets users do an awful lot of things without requiring any knowledge of the underlying technology, such as maintaining content, including images; creating categories for the content; selecting the look-and-feel of the site from a large and growing range of templates; managing multiple users with different access rights; and adding and removing plugins for extra functionality. For users with a working knowledge of web technologies such as HTML, CSS, or PHP, then so much the better -- they can dive under the bonnet/hood (depending on which side of the Atlantic you dive from) and work all sorts of magic. The end result is the best of both CMS and blog worlds, with flexible content layout arranged under hierarchical menus such as a CMS, plus all the nice features of blogs such as ease of maintenance, RSS feeds, comments, and permalinks.&lt;/blockquote&gt;&lt;br/&gt;As you can see it’s possible to use WordPress as a web-project engine. If you have content-driven project and you do not need e-commerce integration, your business logic is straight-through and simple – WordPress is right for you. A lot of plugins for RSS, polling etc. will help you to build the website quickly and easily.&lt;br/&gt;&lt;br/&gt;But what if we need a sort of complex site? Among hundreds of CMSs I distinguish Drupal and Joomla. There is a lot of reasons why these and not other projects, you can check all of them yourself if you don’t trust me. To be honest the only other project that’s worth seeing is Xoops (&lt;a href="http://xoops.org"&gt;http://xoops.org&lt;/a&gt;). But it’s neither user-friendly nor geniously coded (it is great coded though!) so I’m leaving xoops alone.&lt;br/&gt;&lt;br/&gt;Let’s compare those monsters. Monsters in a good meaning. The first thing that caught my eye is Joomla’s admin panel – take a look at &lt;a href="http://demo.joomla.org/demo10/administrator/"&gt;http://demo.joomla.org/demo10/administrator/&lt;/a&gt; (alfim/joomlapass). It’s completely user-friendly, isn’t it? Here is what &lt;a href="http://xaneon.com"&gt;xaneon.com&lt;/a&gt; says (Mambo is an older sister of Joomla):&lt;br/&gt;&lt;blockquote&gt;Mambo is certainly “easy on the eyes”: most people react very favorably to seeing the administration interface for the first time. Another aspect where Mambo is definitely ahead of the game is in installation friendliness, as well as add-on management (installation and uninstallation of components, modules, etc.)&lt;br/&gt;In comparison, Drupal requires one to manually unzip add-ons on the server, possibly create the necessary SQL tables from supplied scripts, and there is no friendly installation “wizard” to guide you through first-time installation. (This is all evolving, though; it shouldn’t be many months before there is a comprehensive installation system available in Drupal.)&lt;br/&gt;If the above points are very important considerations to you, as they certainly might be to less technically-savvy users, then you may not really benefit from this article. As stated, our team hails from a quite different user segment.&lt;/blockquote&gt;&lt;br/&gt;And I completely agree with that. Also, Joomla has thousands of third-party components and templates (much more than Drupal has). That’s the first reason why I’m in love with Joomla.&lt;br/&gt;&lt;br/&gt;I hope you know what is&lt;a href="http://google.com/trends"&gt; Google Trends&lt;/a&gt;. Shortly: it’s a tool that analyzes Google web searches and that can visualize search trends over time using so called "search-volume graphs". These graphs usually provide a good mechanism to compare the popularity of two or more products. &lt;a href="http://buytaert.net/drupal-vs-joomla-popularity"&gt;Buytaert.net&lt;/a&gt; provides us with the search-volume graph that compares Drupal and Joomla:&lt;br/&gt;&lt;div align="center"&gt;&lt;img height="153" alt="" src="http://buytaert.net/images/drupal/drupal-vs-joomla-google.jpg" width="352" border="0" /&gt;&lt;/div&gt;&lt;br/&gt;&lt;blockquote&gt;It is worth pointing out that Joomla has been around a lot longer than the graph suggests. In 2005, the bulk of Mambo's core developers left Mambo and started Joomla after a dispute with Miro Corporation, the company that founded Mambo. Keep this in mind when interpreting the graph. (I tried adding Mambo to the graph but the term Mambo isn't unique to Mambo, the content management system.)&lt;br/&gt;That said, you can see that Joomla is more popular than Drupal, and that Joomla has been growing a lot faster. Why? The general consensus is that Joomla has a more appealing balance between functionality, flexibility, performance, quality of code, ease of use, documentation, user interface design, support and product marketing.&lt;/blockquote&gt;And that’s the second reason why I recommend Joomla – it’s popular, it has very… very big community so all bugs are found and fixed quickly and number of different add-ons for that CMS grows extremely fast.&lt;br/&gt;You might have heard &lt;strong&gt;Mambo*&lt;/strong&gt; is “bulky, badly optimized for search engines, and generally rigid and brittle to customized. Drupal, on the other hand, is perhaps the most search engine friendly CMS on the market. Its modular, flexible, its underlying design has been guided by a stellar philosophy” (&lt;a href="http://www.nicklewis.org/mambo-vs-drupal"&gt;http://www.nicklewis.org/mambo-vs-drupal&lt;/a&gt;) . But Mambo is not a Joomla (check Nick's comment below).&lt;br/&gt;&lt;br/&gt;&lt;span style="font-size:78%;"&gt;*There was "&lt;strong&gt;Joomla&lt;/strong&gt;" before Nov 15, thanks to&lt;a href="http://www.nicklewis.org"&gt; Nick Lewis&lt;/a&gt; for correction.&lt;/span&gt;&lt;br/&gt;&lt;span br=""&gt;&lt;br/&gt;Now, to be honest, I’d like to tell you there is one thing why I can recommend you to use Drupal. It’s coded better than Joomla. It’s a bit faster than Joomla. Buytaert.net says Drupal is 319% faster than Joomla (wow!) but that’s also not a reality. To check this I took my old PC (P-133Mhz) installed there LAMP (Linux+Apache+MySQL+PHP), set up Joomla and Drupal, modified code a bit to get perfomance data and after all of that I got interesting things – Joomla and Drupal have shown comparable time. Drupal was faster only 1%-3%. Old PC demonstrated server’s behaviour at high loads, so … that’s the third reason why I still love Joomla.&lt;br/&gt;&lt;br/&gt;And, to get this finished, here’s what users wrote at &lt;a href="http://answers.yahoo.com/question/index?qid=20060809065610AAuFui7"&gt;Yahoo! Answers&lt;/a&gt;:&lt;br/&gt;&lt;blockquote&gt;There are many Open Source CMS applications and as usual choosing an appropriate one is difficult. In my experience, I find Joomla and Mambo the best but I prefer Joomla as it is being developed more at present as it is an off-shoot of Mambo.&lt;br/&gt;Drupal looks impressive but I found it hard to configure. We used another one called Midgard for a project but there has been little development of that CMS plus it is hard to configure.&lt;br/&gt;The reasons why I like Joomla better are as follows:&lt;br/&gt;1. Joomla has many extensions (add-ons) so it can be scaled easily - &lt;a href="http://extensions.joomla.org"&gt;http://extensions.joomla.org&lt;/a&gt;&lt;br/&gt;2. There are many free as well as paid templates available.&lt;br/&gt;3. Joomla is search engine friendly and this is an important consideration while marketing your website on the Internet. There is as an Search Engine Friendly (SEF) extension at &lt;a href="http://open-sef.org/"&gt;http://open-sef.org/&lt;/a&gt;&lt;br/&gt;4. Most hosting providers have Joomla that can be installed through their Control Panels.&lt;/blockquote&gt;So, if you are a hard programmer, you like to experiment with code, you don’t care much about user-friendly and usability or you think Drupal’s solution is OK – use Drupal.&lt;br/&gt;&lt;br/&gt;If you care about your customers, you wish to ba able to set up addons (components and modules) with 2-3 mouse clicks without even unpacking files manually on server (Joomla will do that for you) or you’re just like me love Joomla – go ahead and give it a try.&lt;br/&gt;&lt;br/&gt;&lt;b&gt;Added on Nov, 16th:&lt;/b&gt; Guys, I'm not the only who respect Joomla. PackTrub &lt;a href="http://www.packtpub.com/award"&gt;admitted it to be the best&lt;/a&gt;. Wow!&lt;br/&gt;&lt;br/&gt;&lt;div align="right"&gt;&lt;i&gt;Alexander Alfimov. Nov, 09 2006&lt;/i&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-116337189904135260?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/116337189904135260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=116337189904135260' title='56 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116337189904135260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116337189904135260'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2006/11/joomla-vs-drupal.html' title='Joomla vs Drupal?'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>56</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31141918.post-116337093482477601</id><published>2006-11-12T14:34:00.000-08:00</published><updated>2006-11-12T14:35:34.840-08:00</updated><title type='text'>А в это время...</title><content type='html'>Давно я что-то писал, а если что-то и писал, то удалял :)&lt;br /&gt;&lt;br /&gt;В этот раз вдохновили комментарии на http://alexclear.livejournal.com/350021.html#comments&lt;br /&gt;&lt;br /&gt;Пока все там хаят PHP, большое количество серъезных организаций в штатах уходят от Java и ASP.NET на PHP. Обратите внимание, именно на PHP, а не на что-либо иное. Хочу поговорить с менеджером одной из таких компаний, узнать, что именно их побудило перейти на сабж. Так что, обещаю в скором времени интересный пост :).&lt;br /&gt;&lt;br /&gt;А пока, оставьте, пожалуйста, комментарии, если у кого-то есть свое мнение по этому поводу.&lt;br /&gt;&lt;br /&gt;Спасибо.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31141918-116337093482477601?l=alfim.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alfim.blogspot.com/feeds/116337093482477601/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31141918&amp;postID=116337093482477601' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116337093482477601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31141918/posts/default/116337093482477601'/><link rel='alternate' type='text/html' href='http://alfim.blogspot.com/2006/11/blog-post.html' title='А в это время...'/><author><name>Alexander Alfimov</name><uri>http://www.blogger.com/profile/16906362692815380173</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry></feed>
