root/trunk/readme.txt

Revision 161, 5.5 kB (checked in by root, 3 weeks ago)

1.6.3 release

Line 
1=== Plugin Name ===
2Contributors: michelem, helened
3Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=michele%40befree%2eit&item_name=WassUp&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=IT&bn=PP%2dDonationsBF&charset=UTF%2d8
4Tags: tracker, tracking, statistics, analyze, web, realtime, stats, ajax, visitors, visits, online users, details, seo, admin, spy, visitors, widgets, widget, sidebar
5Requires at least: 2.2
6Tested up to: 2.7dev - 2.6.* - 2.5.* - 2.3.2 - 2.3.1 - 2.3 - 2.2
7Stable tag: 1.6.3
8
9Analyze your visitors traffic with real time statistics, chart, a lot of chronological information and a sidebar Widget.
10
11== Description ==
12
13!USE THIS CODE AT YOUR OWN RISK!
14
15WassUp is a new Wordpress plugin to track your visitors in real time. It has a very readable and fancy admin console to keep tracks of your blog's users visits.
16It has a "current visitors online" view and a more detailed "visitors details" view where you can know almost everything your users are doing on your blog, it's very useful for SEO or statistics maniacs. Now it comes with a new "Spy" view in Ajax like the Digg Spy.
17The aim of WassUp is the knowledge of what your visitors do when they surf your blog, it is not intended to show grouped statistics for periods like visitors per day, pageviews per months and so on (there are many others tools to better gain that, like Google Analytics). With WassUp you'll get a cronology of your blog's visits with a lot of details for each single user session.
18
19WassUp works with two anti-spam function to detect and skip (if you want) referers spammers and akismet spammers.
20
21For people with database space problem, WassUp has some options to manage his database table, you can empty it or delete old records to prevent reaching the size limit.
22
23It comes with a nice sidebar Widget which shows current visitors online, last searched terms and last external referers. The widget is fully customizable.
24
25WassUp shows a lot of data from who is visiting your blog like:
26
27 - ip / hostname
28 - referer
29 - spider
30 - search engines used
31 - keywords
32 - SERP (search engine result page)
33 - operating system / language / browser
34 - pages viewed (chronologically and per user session)
35 - complete user agent
36 - name of user logged in
37 - name of comment's author
38 - top ten charts with aggregate data (top queries, requests, os, browsers)
39
40The admin console is very nice and you can customize it by:
41
42 - records by date range
43 - records per page
44 - records per entry type (spider, users logged in, comment's authors, search engine, referer)
45 - expand/collapse informations (with ajax support)
46
47There are 4 views:
48
49 - Spy view like Digg Spy
50 - Current Online view
51 - Details view
52 - Options to customize WassUp
53
54Many options are customizable:
55
56 - Refreshing minutes
57 - details width
58 - Users levels required
59 - Enable/Disable recording
60 - Record or not users logged in
61 - Record or not spiders and bots
62 - Record or not exploit attempts (libwww-perl user agent)
63 - IPs to exclude from recording
64 - Alert admin for table growth
65
66== Frequently Asked Questions ==
67
68Coming soon
69
70== Screenshots ==
71
72You could find some screenshots at http://www.wpwp.org
73
74== Installation ==
75
76Installation:
77
78- Download the plugin WassUp (Real Time Visitors Tracking)
79- uncompress it with your preferred unzip/untar program or use the command line: tar xzvf wassup.tar.gz
80- copy the directory wassup in your plugins directory at your wordpress blog (/wp-content/plugins)
81- activate the WassUp Wordpress plugin at your Plugins admin page
82
83Upgrading:
84
85- Disable the WassUp plugin
86- Delete totally the directory "wassup" in your plugins dir
87- Download and unzip the new WassUp file into the plugins dir
88- Enable the WassUp plugin
89
90== Usage ==
91
92Usage:
93
94When you activate (as described in "Installation") the plugin, it works "as is". You don't have anything to do. Wait your visitors hit your blog and start seeing details (click the dashboard and go to WassUp page)
95
96Usage of wassup_sidebar function:
97
98    if (function_exists('wassup_sidebar'))  {
99            wassup_sidebar('');
100    }
101
102Valid option values for wassup_sidebar function are:
103
104    * before_widget - html before the widget
105    * after_widget - html after the widget
106    * before_title - html before the title (default <h2>)
107    * after_title - html after the title (default </h2>)
108    * wtitle - the title (default "visitors online")
109    * wulclass - the ul style class (default "links")
110    * wchars - the max width of sentences (default 18 characters)
111    * wsearch - set 1 to show last searched terms (default 0)
112    * wsearchlimit -  how many searched terms to show  (default 5)
113    * wref - set 1 to show last referers (default 0)
114    * wreflimit - how many referers to show (default 5)
115    * wtopbr - set 1 to show top browsers (default 0)
116    * wtopbrlimit - how many top browsers to show (default 5)
117    * wtopos - set 1 to show top OS (default 0)
118    * wtoposlimit - how many top OS to show (default 5)
119
120You have to put every 15 values, leave them empty if you don't want to use them, for example:
121
122    if (function_exists('wassup_sidebar')){
123                wassup_sidebar('','','<h2>','</h2>','Online Visitors','links',20,1,5,1,5,1,10,1,10);
124    }
125
126== Infos ==
127
128You could find every informations and much more at http://www.wpwp.org - http://trac.wpwp.org - http://www.wpwp.org/forums
129
130Credits to: Jquery ( http://www.jquery.com ) for the amazing Ajax framework, FAMFAMFAM ( http://www.famfamfam.com/ ) for the flags icons and a big thanks to Helene D. ( http://supernatural.hellioness.com/ ) for her help to improve WassUp!
Note: See TracBrowser for help on using the browser.