How to access Website Stats in Dreamhost

by Harsh Agrawal on June 22, 2009

in Webhosting

Shoutmeloud is hosted on Dreamhost and you can read my review of Shoutmeloud here

Dreamhost review and Discount coupon

Almost every web hosting account comes with a stats monitoring service. In   Dreamhost if you are using Wordpress or Joomla you need to make few changes in your .htaccess file to access stats.

dreamhost_status_report

Your domain stats can be access via

http://domain.com/stats

To access your .htaccess file you need to use either any web FTP client or Filezilla.

For more detail on this refer to : How to edit .htaccess file

By default, wordpress .htaccess file has following codes :

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

# END WordPress

You need to add these codes before the above code

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(stats|failed_auth.html).*$ [NC]
RewriteRule . - [L]
</IfModule>

In the end your .htaccess file should have following content :

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(stats|failed_auth.html).*$ [NC]
RewriteRule . - [L]
</IfModule> 

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

# END WordPress

Now point to your domain stats URL mentioned above . Use your Web ID and Panel login password to access Web stats.

I hope this will help whose website and blogs are hosted on Dreamhost.

Also read : How to Install self hosted wordpress blog

Enter your email address:

Related posts:

  1. How to access phpmyadmin in dreamhost hosting?
  2. How to Enable Super Cache Wordpress plugin
  3. How to stop spammer from hotlinking your blog Images using .htaccess method
  4. Dreamhost webhosting 50$ discount coupon for August 2009
  5. Dreamhost Discount Coupon for November 2009
  6. Dreamhost Promo code for 2009
  7. Unlimited hosting plan from dreamhost and dreamhost promo code
  8. How to redirect wordpress default RSS feeds to feedburner without any plugin


{ 2 comments… read them below or add one }

1 Tech @ InkAPoint June 22, 2009 at 19:49

Hei Harsh,

Good article dude. I am planning to buy from DreamHost. This helps me to know about their services further.
.-= Tech @ InkAPoint ´s last blog ..A New Look For Tech @ InkAPoint =-.

Reply

2 Chethan October 3, 2009 at 02:12

This post is book marked!
i never new! domain.com/stats would show stats! great!

Reply

Leave a Comment

Previous post:

Next post: