Archive for the ‘Google’ Category

google trends = what is on TV?

Saturday, May 17th, 2008

Is it just me, or is google trends to a first approximation just reporting what has recently been on TV? I found the trends an interesting idea to begin with, but seriously, more and more it looks like a very high-tech method for figuring out what was shown on TV a few minutes ago. I guess broadcast media can really push a fraction of the nation’s consciousness around.

Our system has experienced a temporary problem

Monday, February 25th, 2008

We were having a problem with google webmaster verification of a website; it constantly said:

“Our system has experienced a temporary problem”

It turned out that a misconfiguration of wordpress on that site in the main .htaccess file was producing error 500 codes instead of error 404 codes for http requests for non-existent pages.  You can see if you have this problem just by trying to load “/nonexistent.html” for your website.  If that reports error 500, that is the problem you need to fix in order to make google happy, and the place to look is the top level .htaccess page.  In our case, a fantastico installation of wordpress had added the following:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

which wasn’t very helpful given that the wordpress installation was not in that directory at all…