Plugin Directory

Changeset 428019


Ignore:
Timestamp:
08/24/2011 09:25:30 AM (15 years ago)
Author:
aviaxis
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • traffic-counter-widget/trunk/readme.txt

    r427071 r428019  
    33331. Configure and place the widget on your sidebar
    3434
    35 Traffic Counter Widget does not have a settings section. However, you can set the fields descriptions on the widget
     35
     36If you need your traffic stats to be more accurate, you should use the Automatic Traffic Filter on the Widget. However, the internet is full of spiders, crawlers and all kind of robots not authenticating themselves as machines. Furthermore, it is very difficult to verify the signature of each and every robot visiting your blog... But there is a pretty good solution to this. I cannot access the root directory of your blog through Wordpress install API, so you will have to do the following things by yourself:
     37
     38
     391. Create a robots.php file on the root directory of your blog: ie public_html/your-blog/
     40Paste the following code in it:
     41
     42<?php
     43session_start();
     44$_SESSION['wtcrobot'] = 1;
     45echo file_get_contents('robots.txt');
     46exit;
     47?>
     48
     491. Open .htaccess file in the same directory and paste this in it:
     50
     51RewriteRule robots\.txt robots.php
     52
     531. Make sure you have the 'RewriteEngine On' clause in place...
     54
     551. Make sure you have a robots.txt file, even an empty one, on the root directory
     56
     57Done! Most of the robots will be filtered out by TCW.
     58
     59
     60
     61Traffic Counter Widget does not have a settings section on Admin page. However, you can set the fields descriptions on the widget
     62
     63
    3664
    3765For help or reporting bugs please refer to: http://www.pixme.org/tehnologie-internet/wordpress-traffic-counter-widget/4228
Note: See TracChangeset for help on using the changeset viewer.