If you use DreamHost for your hosting then you may not be able to access your regular web stats after installing WordPress. There is an easy fix available.
If you have access to the shell then add the following lines to your .htaccess file in the root of your domain (without shell access, you’d need to download the file, edit it and re-upload it via FTP). These lines should be inserted before the lines added by WordPress:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(stats|failed_auth\.html).*$ [NC]
RewriteRule . - [L]
</IfModule>
So, the beginning of your .htaccess file should look like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(stats|failed_auth\.html).*$ [NC]
RewriteRule . - [L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress






WordPress article directories
WordPress seems to be put to all sorts of creative uses these days. One of the most recent developments to which it seems to be intrinsically well suited is to use it as the engine for an article directory.
As an internet/bum marketer this is especially good news as links within blogs (at least at the moment) are regarded as good links by Google.
Here is a list of WordPress article directories that can be used for article marketing. Please read the submission guidelines before submitting.
If you have others to add to this list, then feel free to add them in the comments section below.