<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Linux System Admins Blog</title>
	
	<link>http://linuxsysadminblog.com</link>
	<description>System admins of Promet - an e-commerce, high availability Open Source web shop - share their findings</description>
	<lastBuildDate>Thu, 18 Mar 2010 21:54:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/LinuxSystemAdminsBlog" /><feedburner:info uri="linuxsystemadminsblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Enable/Disable APC on virtual host level</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/0IQ3Sa7FcSM/</link>
		<comments>http://linuxsysadminblog.com/2010/03/enabledisable-apc-on-virtual-host-level/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 21:53:29 +0000</pubDate>
		<dc:creator>marius</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1069</guid>
		<description><![CDATA[APC (Alternative PHP Cache) is a free, open, and robust framework for caching and optimizing PHP intermediate code. APC is a great tool to speed up a php driven site and I can&#8217;t even think of a big site running on a php framework without an opcode cache (other good choices are eaccelerator or xcache). [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pecl.php.net/package/APC" target="_blank"><strong>APC</strong></a> (Alternative PHP Cache) is a free, open, and robust framework for caching and optimizing PHP intermediate code. <strong>APC</strong> is a great tool to speed up a php driven site and I can&#8217;t even think of a big site running on a php framework without an <em>opcode cache</em> (other good choices are <strong>eaccelerator</strong> or <strong>xcache</strong>). Why would not everyone want to use this? The reason why this is not enabled by default everywhere is because in certain situations it can break things. Most peoples will not see any problems, but still, if you run a server with many clients sharing the same apache service this might be a problem (as the apc module loading it is a server-wide config). This post will show how we can use APC globally and disable it for some vhosts (that might have a problem with using APC) or the reverse to just use it one a special vhost that might need this.</p>
<p>I&#8217;ll assume that you have installed apc already, if this is not the case this will probably be something as simple as running<br />
<code>pecl install apc</code><br />
or downloading the archive from pecl and running:<br />
<code>phpize; ./configure; make; make install</code></p>
<p>The APC extension needs to be enabled either in <strong>php.ini</strong> or in one included file with a line like this:<br />
<code>extension=apc.so</code><br />
there are many other parameters that apc can be fine tuned (see the official doc for more info), but without any other change, just with this line apc will be enabled on all the vhosts on the server.</p>
<p><strong>Disabling some vhosts from using APC</strong><br />
- if we want to disable APC for a particular vhost we just have to add to the vhost config or to .htaccess:<br />
<code>php_flag apc.cache_by_default Off</code></p>
<p><strong>Enabling APC only on some vhosts</strong><br />
- if we want to have APC disabled by default globally we will have in php.ini:</p>
<pre><code>extension=apc.so
[apc]
apc.cache_by_default=0 # disable by default
... other apc settings...</code></pre>
<p>and we will enable APC for the particular vhost config or using .htaccess using:<br />
<code>php_flag apc.cache_by_default On</code></p>
<p>Hopefully you found this post useful and this will give you a reason to use APC with more confidence knowing that you have the granularity to disable/enable it as needed in a shared environment.</p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/0IQ3Sa7FcSM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/03/enabledisable-apc-on-virtual-host-level/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/03/enabledisable-apc-on-virtual-host-level/</feedburner:origLink></item>
		<item>
		<title>Problem Moving Drupal Site With SecurePages Module Enabled</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/njNBsuR_nx0/</link>
		<comments>http://linuxsysadminblog.com/2010/02/problem-moving-drupal-site-with-securepages-module-enabled/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 12:41:23 +0000</pubDate>
		<dc:creator>gerold</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[securepages]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1058</guid>
		<description><![CDATA[I made a copy of Drupal6 site with SecurePages module installed and configured.  This module is configured to redirect all or certain pages to https &#8211; depending on your configurations.  For our setup we usually include the login and admin sections to redirect to https.
The problem is on the copied site that is [...]]]></description>
			<content:encoded><![CDATA[<p>I made a copy of Drupal6 site with <a href="http://drupal.org/project/securepages">SecurePages</a> module installed and configured.  This module is configured to redirect all or certain pages to https &#8211; depending on your configurations.  For our setup we usually include the login and admin sections to redirect to https.</p>
<p>The problem is on the copied site that is on a new domain as we cannot login and go to the admin section because it redirect back to the source/original site.  What we need is either disable the securepages module or update the domains.  To do this, you need to access your database (ex: phpmyadmin, etc), go to <em>variable</em> table, and search for <em>securepages</em> configurations. </p>
<p>If you want to disable the module change:<br />
<code>securepages_enable  s:1:"<strong>1</strong>";</code><br />
to<br />
<code>securepages_enable  s:1:"<strong>0</strong>";</code></p>
<p>Or if you want to update the domain change:<span id="more-1058"></span><br />
<code>securepages_basepath s:30:"http://<strong>www.domain.com</strong>";<br />
securepages_basepath_ssl s:31:"https://<strong>www.domain.com</strong>";</code><br />
to<br />
<code>securepages_basepath s:30:"http://<strong>www.newdomain.com</strong>";<br />
securepages_basepath_ssl s:31:"https://<strong>www.newdomain.com</strong>";</code></p>
<p>After making the above changes <strong>don&#8217;t forget</strong> to run the update.php (http://www.newdomain.com/update.php)</p>
<p>If you want to uninstall the module, try removing the securepages directory and run update.php.</p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/njNBsuR_nx0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/02/problem-moving-drupal-site-with-securepages-module-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/02/problem-moving-drupal-site-with-securepages-module-enabled/</feedburner:origLink></item>
		<item>
		<title>Mail Relay Issue on Cpanel Server</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/aP_JF6gSo1Q/</link>
		<comments>http://linuxsysadminblog.com/2010/02/mail-relay-issue-on-cpanel-server/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 14:05:00 +0000</pubDate>
		<dc:creator>gerold</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[relayers]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1050</guid>
		<description><![CDATA[I noticed lots of email being relayed on one of our shared hosting server, CentOS5 with Cpanel and running Exim, and the strange thing is that the email server (MX) for these accounts are pointing to Google (GoogleApps), and we have correct entries for localdomains and remotedomains for these account.  The relayers (&#8216;From&#8217; server/address) [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed lots of email being relayed on one of our shared hosting server, CentOS5 with Cpanel and running Exim, and the strange thing is that the email server (MX) for these accounts are pointing to Google (GoogleApps), and we have correct entries for <em>localdomains</em> and <em>remotedomains</em> for these account.  The relayers (<em>&#8216;From&#8217;</em> server/address) looks like spam anyway.  From the mail logs I noticed that the relayed messages have &#8216;<em>fixed_login</em>&#8216; and key (&#8216;<em>rsa-sha1</em>&#8216;) for their authentications.</p>
<p>Since the mail server for these accounts are pointing to other servers, I deleted all the email accounts, forwarders, mailinglists, etc.  After this I&#8217;ve seen sending error/failure messages from mail logs of the said accounts  It shows &#8216;<em>fixed_login authenticator failed for hostxx&#8217; [535 Incorrect authentication data]</em>.</p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/aP_JF6gSo1Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/02/mail-relay-issue-on-cpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/02/mail-relay-issue-on-cpanel-server/</feedburner:origLink></item>
		<item>
		<title>Making Changes to Drupal Core</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/1A8iHFKucus/</link>
		<comments>http://linuxsysadminblog.com/2010/02/making-changes-to-drupal-core/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 05:42:10 +0000</pubDate>
		<dc:creator>gerold</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1040</guid>
		<description><![CDATA[Although we made it a standard not to make any changes to Drupal core and core modules, there are times that our developers really need to make changes to core modules in order to add the required functionality.  Cases like additional feature for &#8216;user&#8217; or &#8216;comment&#8217; modules and so on.  At this state [...]]]></description>
			<content:encoded><![CDATA[<p>Although we made it a standard not to make any changes to Drupal core and core modules, there are times that our developers really need to make changes to core modules in order to add the required functionality.  Cases like additional feature for &#8216;user&#8217; or &#8216;comment&#8217; modules and so on.  At this state we can&#8217;t perform automatic update on our sites as we might overwrite the changes &#8211; so we need to do the update manually.  Well, this is ok if you maintain one or two sites, but if you have more than 100 sites then it will take you some time.</p>
<p>What we did to eliminate this issue and be able to update the site automatically was to create a copy of the original core modules (located in <em>/modules</em>), add our custom functionality, and put the modified copy into &#8216;contributed&#8217; modules directory (<em>/sites/all/modules</em>).  Drupal read the modules found on <em>/sites/all/modules</em> first and ignore the same copy (original) found on <em>/modules</em>.  Also, may want to change the module info or the package name to separate the modified modules from the original ones &#8211; ex: modified_core, custom, etc.  In the case that Drupal reads both of them, you can just disable the other one.</p>
<p>Here&#8217;s our policy on working with Drupal modules:<br />
  &#8211; contributed or community modules at <em>/sites/all/modules</em><br />
  &#8211; custom made modules at <em>/sites/all/modules/custom</em><br />
  &#8211; modified core modules at <em>/sites/all/modules/core_modified</em></p>
<p>Hope this helps.  <img src='http://linuxsysadminblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/1A8iHFKucus" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/02/making-changes-to-drupal-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/02/making-changes-to-drupal-core/</feedburner:origLink></item>
		<item>
		<title>Drupal core – killing kittens</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/djhSdbljSZU/</link>
		<comments>http://linuxsysadminblog.com/2010/02/drupal-core-killing-kittens/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 03:36:57 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1037</guid>
		<description><![CDATA[You may know that Drupal&#8217;s developers have a saying about hacking core, its whenever you hack core, god kills a kitten.
Well, whether it may or may not be true, we have learned the hard way how much can go wrong when a developer hacks core to meet some requirements and does not tell the sysadmin [...]]]></description>
			<content:encoded><![CDATA[<p>You may know that Drupal&#8217;s developers have a saying about hacking core, its whenever you hack core, god kills a kitten.</p>
<p>Well, whether it may or may not be true, we have learned the hard way how much can go wrong when a developer hacks core to meet some requirements and does not tell the sysadmin team about it.  Drupal security updates are essential to the health of the site, as sysadmins, if we want to scale anything that we do, we can not manage many sites whos cores have been hacked.</p>
<p>If you find yourslef in the situation where you have a hacked core&#8230; you may enjoy this while you pull your hair out or wipe your tears <img src='http://linuxsysadminblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/L2pXcNu4GRo&#038;hl=en_US&#038;fs=1&#038;color1=0x006699&#038;color2=0x54abd6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/L2pXcNu4GRo&#038;hl=en_US&#038;fs=1&#038;color1=0x006699&#038;color2=0x54abd6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/djhSdbljSZU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/02/drupal-core-killing-kittens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/02/drupal-core-killing-kittens/</feedburner:origLink></item>
		<item>
		<title>cvs [checkout aborted]: absolute pathnames invalid for server</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/-nuzbmJKCog/</link>
		<comments>http://linuxsysadminblog.com/2010/02/cvs-checkout-aborted-absolute-pathnames-invalid-for-server/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:44:00 +0000</pubDate>
		<dc:creator>gerold</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[cvs]]></category>
		<category><![CDATA[drupa update]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1030</guid>
		<description><![CDATA[Absolute Path Error:
  cvs [checkout aborted]: absolute pathnames invalid for server (specified `/path/drupalsite/')
Ok, I got the error above when I performed Drupal CVS update on our Debian server (newly installed CVS 1.12.13).  The same command works on other server with older CVS installation.  The issue is the reference to local cvs directory [...]]]></description>
			<content:encoded><![CDATA[<p>Absolute Path Error:<br />
<code>  cvs [checkout aborted]: absolute pathnames invalid for server (specified `/path/drupalsite/')</code></p>
<p>Ok, I got the error above when I performed Drupal CVS update on our Debian server (newly installed CVS 1.12.13).  The same command works on other server with older CVS installation.  The issue is the reference to local cvs directory where I used absolute path (-d /path/drupalsite/), which is a bug (security hole on client side) &#8211; it was fixed on newer CVS version to use relative path.</p>
<p>Drupal Checkout Command:<br />
<code>  cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal co -r DRUPAL-6-15 -d /path/drupalsite/ drupal</code></p>
<p>Use of Relative Path (sample)<br />
<code>  cd /path<br />
  cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal co -r DRUPAL-6-15 -d drupalsite drupal</code></p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/-nuzbmJKCog" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/02/cvs-checkout-aborted-absolute-pathnames-invalid-for-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/02/cvs-checkout-aborted-absolute-pathnames-invalid-for-server/</feedburner:origLink></item>
		<item>
		<title>Drupal Performance improvement for the drupal admins presentation</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/UreN0DbSc0c/</link>
		<comments>http://linuxsysadminblog.com/2010/02/drupal-performance-improvement-for-the-layment-presentation/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:24:57 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[Drupal performance]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1026</guid>
		<description><![CDATA[Last December I gave a talk at the Chicago Drupal Meet Up on increasing your Drupal site&#8217;s performance.  I thought I would share the slides from that presentation with everyone &#8211; so here it is.  I tried to cover a fairly wide array of topics at a high level.  We started with page load performance [...]]]></description>
			<content:encoded><![CDATA[<p>Last December I gave a talk at the Chicago Drupal Meet Up on increasing your Drupal site&#8217;s performance.  I thought I would share the slides from that presentation with everyone &#8211; so here it is.  I tried to cover a fairly wide array of topics at a high level.  We started with page load performance definition, identifying the differences between the high availability and scalability concepts and then we jumped into page load performance.  The talk was very drupal specific in terms of load page improvement recommendations, and we covered a few MySQL drupal performance tweaks, some apache modules and tools, such as YSLOW, Google page speed and JMeter.</p>
<p><a href="http://linuxsysadminblog.com/wp-content/uploads/2010/02/Drupal.org-MakingDrupalFaster.v4.pdf">Drupal.org-MakingDrupalFaster.v4</a></p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/UreN0DbSc0c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2010/02/drupal-performance-improvement-for-the-layment-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2010/02/drupal-performance-improvement-for-the-layment-presentation/</feedburner:origLink></item>
		<item>
		<title>Google to offer free DNS service</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/FyeA2-SjNh8/</link>
		<comments>http://linuxsysadminblog.com/2009/12/google-to-offer-free-dns-service/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 02:55:05 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[cloud computing]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1024</guid>
		<description><![CDATA[Google will start pushing for a faster web next year, and there have been several rumors in the SEO and marketing world that google will add page speed to its SEO rankings algorithm.  Yesterday they have announced that  Google will offer a free DNS service.
First off, this is great.  It should improve the speed of [...]]]></description>
			<content:encoded><![CDATA[<p>Google will start pushing for a faster web next year, and there have been several rumors in the SEO and marketing world that google will add <a href="http://www.steverenner.com/ranking-web-site-speed">page speed to its SEO rankings algorithm</a>.  Yesterday they have <a title="google focuses on speed" href="http://googleblog.blogspot.com/2009/12/introducing-google-public-dns.html">announced </a>that  Google will offer a<a href="http://code.google.com/speed/public-dns/" target="_blank"> free DNS service</a>.</p>
<p>First off, this is great.  It should improve the speed of looking up the DNS info of many sites, and if the service takes off, it should take the load off your NS.</p>
<p>The focus on speed if very clear, the Google public DNS server lists this first as one of the advantages.  It also points to the speed problems caused by <a href="http://code.google.com/speed/public-dns/docs/performance.html">DNS latency</a>.</p>
<h3>Google Public DNS IP addresses</h3>
<p>The Google Public DNS IP addresses are as follows:</p>
<ul>
<li>8.8.8.8</li>
<li>8.8.4.4</li>
</ul>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/FyeA2-SjNh8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2009/12/google-to-offer-free-dns-service/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2009/12/google-to-offer-free-dns-service/</feedburner:origLink></item>
		<item>
		<title>Black Friday – 404, Site not available, and others from your favorite sites</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/Cg2Q5k2-3iA/</link>
		<comments>http://linuxsysadminblog.com/2009/11/black-friday-404-site-not-available-and-others-from-your-favorite-sites/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 01:03:23 +0000</pubDate>
		<dc:creator>andrew</dc:creator>
				<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=1009</guid>
		<description><![CDATA[404 and error pages on world's biggest sites images of]]></description>
			<content:encoded><![CDATA[<p>My small collection of my favorite 404 and error messages on the web, from mostly big sites.  Some are humorous, some are quirky, and I think they are all great.  No one is perfect.</p>
<p>Enjoy.</p>
<p>Top web site error pages &#8211; my favorites.</p>
<p>1) barrackobama.com &#8211; simple, to the point, diffusing.</p>
<div id="attachment_1010" class="wp-caption alignnone" style="width: 779px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2008-08-25_1737obama.png"><img class="size-full wp-image-1010" title="2008-08-25_1737obama" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2008-08-25_1737obama.png" alt="Obama.org site not availalble 404" width="769" height="584" /></a><p class="wp-caption-text">Obama.org site not availalble 404</p></div>
<p>2) Plaxo.com &#8211; (oops! There seems to be a problem.  I&#8217;ll tell you what&#8230; let us fix it and this can be our little secret.)  humorous</p>
<p><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2008-09-23_0754-plaxoerror.png"><img class="alignnone size-full wp-image-1011" title="2008-09-23_0754-plaxoerror" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2008-09-23_0754-plaxoerror.png" alt="2008-09-23_0754-plaxoerror" width="925" height="278" /></a></p>
<p>3) crowdspring.com &#8211; (our servers are currently fighting among themselves and we&#8217;re putting them into a timeout.) &#8211; if you have kids you will appreciate this.</p>
<div id="attachment_1012" class="wp-caption alignnone" style="width: 957px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2009-05-08_1607.png"><img class="size-full wp-image-1012" title="2009-05-08_1607" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2009-05-08_1607.png" alt="2009-05-08_1607" width="947" height="415" /></a><p class="wp-caption-text">crowdspring.error error</p></div>
<p>4) youtube.com &#8211; (&#8220;The functionality is not available&#8230; Be cool &#8211; we&#8217;ll be back 100% in a bit.&#8221;) &#8211; I like the slang</p>
<div id="attachment_1013" class="wp-caption alignnone" style="width: 984px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/becool-youtube.JPG"><img class="size-full wp-image-1013" title="becool-youtube" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/becool-youtube.JPG" alt="be cool - you tube 404 image" width="974" height="600" /></a><p class="wp-caption-text">be cool - you tube 404 image</p></div>
<p>5) Witter error &#8211; before the whale</p>
<div id="attachment_1015" class="wp-caption alignnone" style="width: 936px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2009-10-02_1610.png"><img class="size-full wp-image-1015" title="2009-10-02_1610" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/2009-10-02_1610.png" alt="twitter error, before the whale" width="926" height="509" /></a><p class="wp-caption-text">twitter error, before the whale</p></div>
<p>6) Google apps error &#8211; not funny, not cool&#8230; common google, you can be fun too!</p>
<div id="attachment_1017" class="wp-caption alignnone" style="width: 730px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/google.png"><img class="size-full wp-image-1017" title="google" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/google.png" alt="google error" width="720" height="205" /></a><p class="wp-caption-text">google error</p></div>
<p>7) suumbleupon.com error &#8211; (&#8220;we&#8217;ll be right back, in the mean time why dont you go outside and play for a while&#8221;) &#8211; LOVE this one</p>
<p><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/stubmleupon.bmp"><img class="alignnone size-full wp-image-1018" title="stubmleupon" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/stubmleupon.bmp" alt="stumble upon 404 - funny" /></a></p>
<p> <img src='http://linuxsysadminblog.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Facebook error &#8211; not funny at all, especially since it happens a lot</p>
<p><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/facebook.png"><img class="alignnone size-full wp-image-1019" title="facebook" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/facebook.png" alt="facebook" width="616" height="253" /></a></p>
<p>9) the now famous twitter whale &#8211; simply brilliant</p>
<div id="attachment_1020" class="wp-caption alignnone" style="width: 895px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/twitter-overcapacity.png"><img class="size-full wp-image-1020" title="twitter-overcapacity" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/twitter-overcapacity.png" alt="twitter whale" width="885" height="705" /></a><p class="wp-caption-text">twitter whale</p></div>
<p>10) technorati.com error (&#8220;Doh! The Technorati Monster escaped again.&#8221;) &#8211; good one</p>
<div id="attachment_1021" class="wp-caption alignnone" style="width: 925px"><a href="http://linuxsysadminblog.com/wp-content/uploads/2009/11/technocrati.png"><img class="size-full wp-image-1021" title="technocrati" src="http://linuxsysadminblog.com/wp-content/uploads/2009/11/technocrati.png" alt="techocrati 404" width="915" height="391" /></a><p class="wp-caption-text">techocrati 404</p></div>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/Cg2Q5k2-3iA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2009/11/black-friday-404-site-not-available-and-others-from-your-favorite-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2009/11/black-friday-404-site-not-available-and-others-from-your-favorite-sites/</feedburner:origLink></item>
		<item>
		<title>Apache Now Supports Multiple SSL on Single IP Address</title>
		<link>http://feedproxy.google.com/~r/LinuxSystemAdminsBlog/~3/CzaAKEP_G3s/</link>
		<comments>http://linuxsysadminblog.com/2009/11/apache-now-supports-multiple-ssl-on-single-ip-address/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 06:08:23 +0000</pubDate>
		<dc:creator>gerold</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://linuxsysadminblog.com/?p=999</guid>
		<description><![CDATA[With the release of Apache 2.2.12, we can now configure multiple SSL sites in one IP address.  It is available of you have Server Name Indication (SNI) extension for OpenSSL.  Visit TechRepublic&#8217;s post on &#8220;Configure Apache to support multiple SSL sites on a single IP address&#8221; for details and vhost sample configuration.  [...]]]></description>
			<content:encoded><![CDATA[<p>With the release of Apache 2.2.12, we can now configure multiple SSL sites in one IP address.  It is available of you have Server Name Indication (SNI) extension for OpenSSL.  Visit TechRepublic&#8217;s post on &#8220;<a href="http://blogs.techrepublic.com.com/opensource/?p=987">Configure Apache to support multiple SSL sites on a single IP address</a>&#8221; for details and vhost sample configuration.  And for complete reference please refer to this page &#8220;<a href="http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI">SSL with Virtual Hosts Using SNI</a>&#8221; and <a href="http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslstrictsnivhostcheck">Apache mod_ssl documentation</a>.</p>
<p>We&#8217;ll try this on our server and hopefully offer this to our shared hosting clients who wants SSL but not interested in paying extra for a dedicated ip address.  <img src='http://linuxsysadminblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/LinuxSystemAdminsBlog/~4/CzaAKEP_G3s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linuxsysadminblog.com/2009/11/apache-now-supports-multiple-ssl-on-single-ip-address/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://linuxsysadminblog.com/2009/11/apache-now-supports-multiple-ssl-on-single-ip-address/</feedburner:origLink></item>
	</channel>
</rss>
