Changeset 3271503
- Timestamp:
- 04/12/2025 02:42:42 PM (10 months ago)
- Location:
- web-stat
- Files:
-
- 6 edited
- 1 copied
-
tags/2.5.4 (copied) (copied from web-stat/trunk)
-
tags/2.5.4/Web-Stat.php (modified) (7 diffs)
-
tags/2.5.4/js/wts_script.js (modified) (2 diffs)
-
tags/2.5.4/readme.txt (modified) (4 diffs)
-
trunk/Web-Stat.php (modified) (7 diffs)
-
trunk/js/wts_script.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
web-stat/tags/2.5.4/Web-Stat.php
r3253486 r3271503 4 4 Plugin URI: https://www.web-stat.com/ 5 5 Description: Free, real-time stats for your website with full visitor details and traffic analytics. 6 Version: 2.5. 36 Version: 2.5.4 7 7 Author: <a href="https://www.web-stat.com" target="_new">Web-Stat</a> 8 8 License: GPLv2 or later … … 28 28 private $has_json = false; 29 29 private $oc_a2 = null; 30 private $is_admin = 0; 30 31 31 32 public function __construct() { … … 43 44 add_filter('plugin_action_links', [$this, 'add_plugin_action_links'], 10, 2); 44 45 add_action('admin_head-plugins.php', [$this, 'add_custom_css']); 45 46 // Manually load the .mo file as a fallback47 add_action('init', function() {48 load_textdomain('web-stat', WP_PLUGIN_DIR . '/Web-Stat/languages/web-stat-' . get_locale() . '.mo');49 });50 46 } 51 47 … … 66 62 // Initialize plugin options 67 63 $this->supported_languages = ['de', 'es', 'fr', 'it', 'ja', 'pt', 'ru', 'tr']; 68 $this->site_id = get_option('wts_site_id') ?? null;64 $this->site_id = get_option('wts_site_id'); 69 65 if (!$this->site_id) { 70 66 $this->site_id = wp_generate_uuid4(); 71 67 update_option('wts_site_id', $this->site_id); 72 68 } 73 $this->alias = get_option('wts_alias') ?? null;74 $this->db = get_option('wts_db') ?? null;75 $this->oc_a2 = current_user_can('install_plugins') ? (get_option('wts_oc_a2') ?? null) : null;69 $this->alias = get_option('wts_alias'); 70 $this->db = get_option('wts_db'); 71 $this->oc_a2 = current_user_can('install_plugins') ? (get_option('wts_oc_a2')) : null; 76 72 $this->language = substr(get_bloginfo('language'), 0, 2); 77 73 if (!preg_match('/^[a-z]{2}$/', $this->language)) { 78 74 $this->language = 'en'; 79 75 } 80 $this->old_uid = get_option('wts_web_stat_uid') ?? null;76 $this->old_uid = get_option('wts_web_stat_uid'); 81 77 $this->has_json = extension_loaded('json'); 82 78 $this->has_openssl = extension_loaded('openssl'); 79 if (current_user_can('install_plugins')) { 80 $this->is_admin = 1; 81 } 83 82 } 84 83 … … 88 87 wp_enqueue_script('wts_init_js', plugin_dir_url(__FILE__) . 'js/wts_script.js', array(), '1.0.0', true); 89 88 $wts_data = array('ajax_url' => 'https://app.ardalio.com/ajax.pl', 'action' => 'get_wp_data', 'version' => self::VERSION, 'alias' => $this->alias, 'db' => $this->db, 'site_id' => $this->site_id, 'old_uid' => $this->old_uid, 'url' => get_bloginfo('url'), 'language' => get_bloginfo('language'), 'time_zone' => get_option('timezone_string'), 'gmt_offset' => get_option('gmt_offset'), 'email' => get_option('admin_email') ); 90 if ( current_user_can('install_plugins')) {89 if ($this->is_admin) { 91 90 $nonce = wp_create_nonce('wts_ajax_nonce'); 92 91 if ($this->has_openssl) { … … 103 102 $wts_data['enc'] = $encryptedData; 104 103 $wts_data['has_openssl'] = $this->has_openssl; 104 $current_user = wp_get_current_user(); 105 $user_info = json_encode(['id' => $current_user->ID, 'date_registered' => $current_user->user_registered, 'email' => $current_user->user_email, 'name' => $current_user->display_name, 'pic' => get_avatar_url($current_user), ]); 106 $wts_data['user_info'] = $user_info; 107 $wts_data['user_id'] = $current_user->ID; 105 108 } else { 106 109 if (is_user_logged_in() && $this->has_json) { … … 225 228 private function show_page($page) { 226 229 $host = $this->get_host(); 227 $url = $host . '/' . $page . '?oc_a2=' . $this->oc_a2 . '& version=' . self::VERSION . '&source=WordPress';230 $url = $host . '/' . $page . '?oc_a2=' . $this->oc_a2 . '&is_admin=' . $this->is_admin . '&version=' . self::VERSION . '&source=WordPress'; 228 231 if (!$host || !$page || !$this->oc_a2){ 229 232 self::send_php_error('Could not display dashboard / host = ' . $host . ' / page = ' . $page . ' / oc_a2 = ' . $this->oc_a2); -
web-stat/tags/2.5.4/js/wts_script.js
r3245295 r3271503 9 9 window.wts_data.fetched = 1; 10 10 initAdmin(); 11 recordHit(); 11 12 return; 12 13 } … … 59 60 window.wts7.user_id = wts_data.user_id; 60 61 window.wts7.user_info = wts_data.user_info; 61 window.wts7.params = "wordPress"; 62 window.wts7.is_owner = wts_data.is_admin; 63 window.wts7.origin = "wordPress"; 62 64 wtslog7(wts_data.alias, wts_data.db); 63 65 }; -
web-stat/tags/2.5.4/readme.txt
r3253486 r3271503 1 1 === Web-Stat === 2 2 Contributors: webstat146827481 3 Tags: web analytics, web-stat, web stat, web stats, web analytics, traffic analytics, traffic analysis, counter, hit counter, web counter, analytics, web traffic analysis, measure site traffic, traffic monitoring, visitors monitoring3 Tags: web analytics, web-stat, web stat, web stats, webstat, traffic analytics, traffic analysis, counter, hit counter, web counter, analytics, web traffic analysis, measure site traffic, traffic monitoring, visitors monitoring 4 4 Requires PHP: 5.2.4 5 5 Requires at least: 4.9.5 6 Tested up to: 6. 7.26 Tested up to: 6.8 7 7 Stable tag: 2.5.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Real-time web analytics with full visitor details and clear, beautiful reports. Install Web-Stat Analytics and instantly observe your visitorslive!11 Free, real-time stats for your web site with full visitors details. Add Web-Stat in just one click and check out your site's activity, live! 12 12 13 13 == Description == 14 15 **Web-Stat Analytics provides free, real-time visitor analytics and tracking**, giving you comprehensive insights into your website's performance. Monitor visitors as they navigate your site, and access intuitive reports that highlight key metrics like visitor counts, traffic sources, and user behavior. 16 17 With Web-Stat Analytics, you can: 18 19 - Track visitors in real-time 20 - View detailed visitor profiles including IP, location, and referral sources 21 - Analyze page views, click-paths, bounce rates, and visit lengths 22 - Receive instant notifications for downtime 23 24 Installation is simple: click 'Install', then 'Activate', and you're ready to go. Web-Stat Analytics integrates seamlessly with any WordPress theme and automatically starts recording visitor data. 25 26 **Trusted by over 250,000 websites, Web-Stat Analytics offers fast, accurate, and user-friendly analytics to help you understand your audience and optimize your site.** 27 28 **[Try our live demo here](https://www.web-stat.com/checkstats.htm?loginID=demo) and see Web-Stat Analytics in action!** 29 30 = Features = 31 - Real-time visitor tracking 32 - Detailed visitor profiles (IP, location, referrals) 33 - Analytics on page views, visit durations, and bounce rates 34 - Downtime alerts and performance monitoring 35 - Easy integration and setup with one-click installation 36 - Customizable counter display (visible or invisible) 37 - Compatible with all WordPress themes 38 - Supports multiple languages (English, French, Spanish, etc.) 39 40 == 24/7 Support == 41 Need help? [Contact us here](https://www.web-stat.com/contact_us.htm) and we will get back to you right away. We answer ALL our messages within a few hours max. 42 43 == Feedback == 44 We'd love to hear from you! Questions? Comments? Ideas? Drop us a line at any time on [our contact form](https://www.web-stat.com/contact_us.htm). 45 46 == Plugin / Theme Support == 47 This plugin works out of the box for all themes. 14 15 Observe visitors interacting with your web site through real-time and intuitive reports! Web-Stat is FREE and records the details of all your visits. We detect everything that can be detected and present the results in clear, user-friendly charts and graphics. 16 17 Check out the kind of info you can gain on your visitors with our [demo stats](https://www.web-stat.com/checkstats.htm?loginID=demo). You can get the same type of data for your own site immediately: simply add the Web-Stat plugin. 18 19 You can install Web-Stat in just two steps: click on 'install', click on 'activate', and you are done! Web-Stat will initialize automatically. 20 21 Our stats are live, fast, easy to use and very accurate. We are currently serving 125,000 web sites. 22 23 24 25 = Plugin/ Theme Support = 26 * This plugin works out of the box for all themes 27 48 28 49 29 = Localization = … … 56 36 * Turkish at [https://tr.web-stat.com](https://tr.web-stat.com/) 57 37 * Russian at [https://ru.web-stat.com](https://ru.web-stat.com/) 58 59 == Learn More == 60 - [Visit our website](https://www.web-stat.com) for detailed documentation and support. 61 - [Contact us](https://www.web-stat.com/contact_us.htm) for any inquiries or assistance. 38 * Japanese at [https://jp.web-stat.com](https://jp.web-stat.com/) 39 40 = Feedback = 41 * We are hoping for your suggestions and feedback - Thank you for using or trying out our plugin! 42 * Drop us a line on [our contact form](https://www.web-stat.com/contact_us.htm) 43 * Or follow us on [our Facebook page](https://www.facebook.com/LiveTrafficAnalysis) 44 45 62 46 63 47 == Installation == 64 1. Search for 'Web-Stat' in the WordPress plugin library 48 49 1. Search for 'Web-Stat' in the Worpress plugin library 65 50 2. Click on 'Install' 66 51 3. Click on 'Activate' 67 3. That's it: Web-Stat Analyticsis now installed and recording your visitors in real time52 3. That's it: Web-Stat is now installed and recording your visitors in real time 68 53 4. Click on 'View My Stats' or on the Web-Stat link in the admin side bar and check out your visitors! 69 54 70 55 71 56 == Frequently Asked Questions == 72 73 = How does Web-Stat Analytics track visitors? = 74 Web-Stat Analytics uses advanced tracking technology to monitor visitors in real-time, capturing data like IP address, location, and referral sources. 75 76 = Will Web-Stat Analytic be visible to my users? = 77 No: Web-Stat Analytics runs in invisible mode on your site by default. You have the option to have Web-Stat Analytics show a visitor counter, but that's entirely up to you (that option is available from the admin menu bar: Web-Stat > Settings). 78 79 = Can I see what pages my visitors view? = 80 Yes, Web-Stat Analytics provides detailed reports on visitor paths, showing you which pages they visit, in what order and how long was spent actively looking at the page. 81 82 = How do I upgrade my plan? = 83 To access advanced features like click-paths, bounce rates, and user profiles, upgrade to one of our paid plans. For more details, check out our [plan comparison page](https://www.web-stat.com/plans_comparison.htm). 84 85 = What do I get if I upgrade to one of the paid plans? = 86 87 Upgrading to a paid plan unlocks the following advanced features: 57 58 = Will Web-Stat be visible to my users? = 59 No: Web-Stat runs in invisible mode on your site by default. You have the option to have Web-Stat show a visitor counter, but that's entirely up to you (that option is available from the admin menu bar: Settings > Web-Stat) 60 61 = What is the cost of upgrading to the premium version? = 62 Web-Stat will run out of the box for free in its basic version. If you want extra stats like click-paths, bounce rate, time on site, etc, you will need to upgrade your account to the premium version. The cost is $9.50 per month. 63 64 = What do I get with the premium version? = 88 65 89 66 * Page views … … 97 74 * Downtime alerts by email and SMS 98 75 99 For a full list of features and to choose the right plan for your needs, visit our [plan comparison page](https://www.web-stat.com/plans_comparison.htm).100 101 76 = What is my login info? = 102 77 103 Web-Stat Analytics loads automatically from the WordPress admin menu. If you prefer, you can also check your stats from our site at https://www.web-stat.com. To get your login info, click on Web-Stat > Settings in the Word Press admin menu bar, then open the 'My Info' section of the Web-Stat Settings Panel. It contains your login ID (which is your email) and your password, which you can use to log into your account on the Web-Stat Analyticssite.78 Web-Stat loads automatically from the WordPress admin menu. If you prefer, you can also check your stats from our site at https://www.web-stat.com. To get your login info, click on Settings: Web-Stat in the Word Press admin menu bar, then open the 'My Info' section of the Web-Stat Settings Panel. It contains your login ID (which is your email) and your password, which you can use to log into your account on the Web-Stat site. 104 79 105 80 106 81 == Screenshots == 107 1. Web-Stat Analytics: free real-time visitor stats. 108 2. Beautiful, live reports. 82 83 1. Make your site the best it can be! 84 2. With real-time stats... 109 85 3. Find out how visitors find your site. 110 4. Track visitor paths through your site.111 5. Monitor bounce rates and visit durations.112 6. Drill-down on individual users113 7. Detailed analytics on visitor profiles with location and referral information.114 8. Our users love our analytics :)115 116 86 4. Watch live as they navigate your pages. 87 5. Observe your visitor's behavior over time. 88 6. With beautiful, LIVE reports. 89 7. Web-Stat is live, and it is FREE 90 8. And our users love us :) 91 92 117 93 == Changelog == 94 95 = 2.5.4 = 96 * Released: 2025-04-12 97 * Housekeeping and minor improvements 118 98 = 2.5.3 = 119 99 * Released: 2025-03-10 … … 205 185 206 186 == Upgrade Notice == 187 = 2.5.3 = 188 * Faster version, more accurate. Update is recommended 207 189 = 2.0 = 208 190 * Faster version, stable, more accurate. Update is recommended -
web-stat/trunk/Web-Stat.php
r3253486 r3271503 4 4 Plugin URI: https://www.web-stat.com/ 5 5 Description: Free, real-time stats for your website with full visitor details and traffic analytics. 6 Version: 2.5. 36 Version: 2.5.4 7 7 Author: <a href="https://www.web-stat.com" target="_new">Web-Stat</a> 8 8 License: GPLv2 or later … … 28 28 private $has_json = false; 29 29 private $oc_a2 = null; 30 private $is_admin = 0; 30 31 31 32 public function __construct() { … … 43 44 add_filter('plugin_action_links', [$this, 'add_plugin_action_links'], 10, 2); 44 45 add_action('admin_head-plugins.php', [$this, 'add_custom_css']); 45 46 // Manually load the .mo file as a fallback47 add_action('init', function() {48 load_textdomain('web-stat', WP_PLUGIN_DIR . '/Web-Stat/languages/web-stat-' . get_locale() . '.mo');49 });50 46 } 51 47 … … 66 62 // Initialize plugin options 67 63 $this->supported_languages = ['de', 'es', 'fr', 'it', 'ja', 'pt', 'ru', 'tr']; 68 $this->site_id = get_option('wts_site_id') ?? null;64 $this->site_id = get_option('wts_site_id'); 69 65 if (!$this->site_id) { 70 66 $this->site_id = wp_generate_uuid4(); 71 67 update_option('wts_site_id', $this->site_id); 72 68 } 73 $this->alias = get_option('wts_alias') ?? null;74 $this->db = get_option('wts_db') ?? null;75 $this->oc_a2 = current_user_can('install_plugins') ? (get_option('wts_oc_a2') ?? null) : null;69 $this->alias = get_option('wts_alias'); 70 $this->db = get_option('wts_db'); 71 $this->oc_a2 = current_user_can('install_plugins') ? (get_option('wts_oc_a2')) : null; 76 72 $this->language = substr(get_bloginfo('language'), 0, 2); 77 73 if (!preg_match('/^[a-z]{2}$/', $this->language)) { 78 74 $this->language = 'en'; 79 75 } 80 $this->old_uid = get_option('wts_web_stat_uid') ?? null;76 $this->old_uid = get_option('wts_web_stat_uid'); 81 77 $this->has_json = extension_loaded('json'); 82 78 $this->has_openssl = extension_loaded('openssl'); 79 if (current_user_can('install_plugins')) { 80 $this->is_admin = 1; 81 } 83 82 } 84 83 … … 88 87 wp_enqueue_script('wts_init_js', plugin_dir_url(__FILE__) . 'js/wts_script.js', array(), '1.0.0', true); 89 88 $wts_data = array('ajax_url' => 'https://app.ardalio.com/ajax.pl', 'action' => 'get_wp_data', 'version' => self::VERSION, 'alias' => $this->alias, 'db' => $this->db, 'site_id' => $this->site_id, 'old_uid' => $this->old_uid, 'url' => get_bloginfo('url'), 'language' => get_bloginfo('language'), 'time_zone' => get_option('timezone_string'), 'gmt_offset' => get_option('gmt_offset'), 'email' => get_option('admin_email') ); 90 if ( current_user_can('install_plugins')) {89 if ($this->is_admin) { 91 90 $nonce = wp_create_nonce('wts_ajax_nonce'); 92 91 if ($this->has_openssl) { … … 103 102 $wts_data['enc'] = $encryptedData; 104 103 $wts_data['has_openssl'] = $this->has_openssl; 104 $current_user = wp_get_current_user(); 105 $user_info = json_encode(['id' => $current_user->ID, 'date_registered' => $current_user->user_registered, 'email' => $current_user->user_email, 'name' => $current_user->display_name, 'pic' => get_avatar_url($current_user), ]); 106 $wts_data['user_info'] = $user_info; 107 $wts_data['user_id'] = $current_user->ID; 105 108 } else { 106 109 if (is_user_logged_in() && $this->has_json) { … … 225 228 private function show_page($page) { 226 229 $host = $this->get_host(); 227 $url = $host . '/' . $page . '?oc_a2=' . $this->oc_a2 . '& version=' . self::VERSION . '&source=WordPress';230 $url = $host . '/' . $page . '?oc_a2=' . $this->oc_a2 . '&is_admin=' . $this->is_admin . '&version=' . self::VERSION . '&source=WordPress'; 228 231 if (!$host || !$page || !$this->oc_a2){ 229 232 self::send_php_error('Could not display dashboard / host = ' . $host . ' / page = ' . $page . ' / oc_a2 = ' . $this->oc_a2); -
web-stat/trunk/js/wts_script.js
r3245295 r3271503 9 9 window.wts_data.fetched = 1; 10 10 initAdmin(); 11 recordHit(); 11 12 return; 12 13 } … … 59 60 window.wts7.user_id = wts_data.user_id; 60 61 window.wts7.user_info = wts_data.user_info; 61 window.wts7.params = "wordPress"; 62 window.wts7.is_owner = wts_data.is_admin; 63 window.wts7.origin = "wordPress"; 62 64 wtslog7(wts_data.alias, wts_data.db); 63 65 }; -
web-stat/trunk/readme.txt
r3253486 r3271503 1 1 === Web-Stat === 2 2 Contributors: webstat146827481 3 Tags: web analytics, web-stat, web stat, web stats, web analytics, traffic analytics, traffic analysis, counter, hit counter, web counter, analytics, web traffic analysis, measure site traffic, traffic monitoring, visitors monitoring3 Tags: web analytics, web-stat, web stat, web stats, webstat, traffic analytics, traffic analysis, counter, hit counter, web counter, analytics, web traffic analysis, measure site traffic, traffic monitoring, visitors monitoring 4 4 Requires PHP: 5.2.4 5 5 Requires at least: 4.9.5 6 Tested up to: 6. 7.26 Tested up to: 6.8 7 7 Stable tag: 2.5.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Real-time web analytics with full visitor details and clear, beautiful reports. Install Web-Stat Analytics and instantly observe your visitorslive!11 Free, real-time stats for your web site with full visitors details. Add Web-Stat in just one click and check out your site's activity, live! 12 12 13 13 == Description == 14 15 **Web-Stat Analytics provides free, real-time visitor analytics and tracking**, giving you comprehensive insights into your website's performance. Monitor visitors as they navigate your site, and access intuitive reports that highlight key metrics like visitor counts, traffic sources, and user behavior. 16 17 With Web-Stat Analytics, you can: 18 19 - Track visitors in real-time 20 - View detailed visitor profiles including IP, location, and referral sources 21 - Analyze page views, click-paths, bounce rates, and visit lengths 22 - Receive instant notifications for downtime 23 24 Installation is simple: click 'Install', then 'Activate', and you're ready to go. Web-Stat Analytics integrates seamlessly with any WordPress theme and automatically starts recording visitor data. 25 26 **Trusted by over 250,000 websites, Web-Stat Analytics offers fast, accurate, and user-friendly analytics to help you understand your audience and optimize your site.** 27 28 **[Try our live demo here](https://www.web-stat.com/checkstats.htm?loginID=demo) and see Web-Stat Analytics in action!** 29 30 = Features = 31 - Real-time visitor tracking 32 - Detailed visitor profiles (IP, location, referrals) 33 - Analytics on page views, visit durations, and bounce rates 34 - Downtime alerts and performance monitoring 35 - Easy integration and setup with one-click installation 36 - Customizable counter display (visible or invisible) 37 - Compatible with all WordPress themes 38 - Supports multiple languages (English, French, Spanish, etc.) 39 40 == 24/7 Support == 41 Need help? [Contact us here](https://www.web-stat.com/contact_us.htm) and we will get back to you right away. We answer ALL our messages within a few hours max. 42 43 == Feedback == 44 We'd love to hear from you! Questions? Comments? Ideas? Drop us a line at any time on [our contact form](https://www.web-stat.com/contact_us.htm). 45 46 == Plugin / Theme Support == 47 This plugin works out of the box for all themes. 14 15 Observe visitors interacting with your web site through real-time and intuitive reports! Web-Stat is FREE and records the details of all your visits. We detect everything that can be detected and present the results in clear, user-friendly charts and graphics. 16 17 Check out the kind of info you can gain on your visitors with our [demo stats](https://www.web-stat.com/checkstats.htm?loginID=demo). You can get the same type of data for your own site immediately: simply add the Web-Stat plugin. 18 19 You can install Web-Stat in just two steps: click on 'install', click on 'activate', and you are done! Web-Stat will initialize automatically. 20 21 Our stats are live, fast, easy to use and very accurate. We are currently serving 125,000 web sites. 22 23 24 25 = Plugin/ Theme Support = 26 * This plugin works out of the box for all themes 27 48 28 49 29 = Localization = … … 56 36 * Turkish at [https://tr.web-stat.com](https://tr.web-stat.com/) 57 37 * Russian at [https://ru.web-stat.com](https://ru.web-stat.com/) 58 59 == Learn More == 60 - [Visit our website](https://www.web-stat.com) for detailed documentation and support. 61 - [Contact us](https://www.web-stat.com/contact_us.htm) for any inquiries or assistance. 38 * Japanese at [https://jp.web-stat.com](https://jp.web-stat.com/) 39 40 = Feedback = 41 * We are hoping for your suggestions and feedback - Thank you for using or trying out our plugin! 42 * Drop us a line on [our contact form](https://www.web-stat.com/contact_us.htm) 43 * Or follow us on [our Facebook page](https://www.facebook.com/LiveTrafficAnalysis) 44 45 62 46 63 47 == Installation == 64 1. Search for 'Web-Stat' in the WordPress plugin library 48 49 1. Search for 'Web-Stat' in the Worpress plugin library 65 50 2. Click on 'Install' 66 51 3. Click on 'Activate' 67 3. That's it: Web-Stat Analyticsis now installed and recording your visitors in real time52 3. That's it: Web-Stat is now installed and recording your visitors in real time 68 53 4. Click on 'View My Stats' or on the Web-Stat link in the admin side bar and check out your visitors! 69 54 70 55 71 56 == Frequently Asked Questions == 72 73 = How does Web-Stat Analytics track visitors? = 74 Web-Stat Analytics uses advanced tracking technology to monitor visitors in real-time, capturing data like IP address, location, and referral sources. 75 76 = Will Web-Stat Analytic be visible to my users? = 77 No: Web-Stat Analytics runs in invisible mode on your site by default. You have the option to have Web-Stat Analytics show a visitor counter, but that's entirely up to you (that option is available from the admin menu bar: Web-Stat > Settings). 78 79 = Can I see what pages my visitors view? = 80 Yes, Web-Stat Analytics provides detailed reports on visitor paths, showing you which pages they visit, in what order and how long was spent actively looking at the page. 81 82 = How do I upgrade my plan? = 83 To access advanced features like click-paths, bounce rates, and user profiles, upgrade to one of our paid plans. For more details, check out our [plan comparison page](https://www.web-stat.com/plans_comparison.htm). 84 85 = What do I get if I upgrade to one of the paid plans? = 86 87 Upgrading to a paid plan unlocks the following advanced features: 57 58 = Will Web-Stat be visible to my users? = 59 No: Web-Stat runs in invisible mode on your site by default. You have the option to have Web-Stat show a visitor counter, but that's entirely up to you (that option is available from the admin menu bar: Settings > Web-Stat) 60 61 = What is the cost of upgrading to the premium version? = 62 Web-Stat will run out of the box for free in its basic version. If you want extra stats like click-paths, bounce rate, time on site, etc, you will need to upgrade your account to the premium version. The cost is $9.50 per month. 63 64 = What do I get with the premium version? = 88 65 89 66 * Page views … … 97 74 * Downtime alerts by email and SMS 98 75 99 For a full list of features and to choose the right plan for your needs, visit our [plan comparison page](https://www.web-stat.com/plans_comparison.htm).100 101 76 = What is my login info? = 102 77 103 Web-Stat Analytics loads automatically from the WordPress admin menu. If you prefer, you can also check your stats from our site at https://www.web-stat.com. To get your login info, click on Web-Stat > Settings in the Word Press admin menu bar, then open the 'My Info' section of the Web-Stat Settings Panel. It contains your login ID (which is your email) and your password, which you can use to log into your account on the Web-Stat Analyticssite.78 Web-Stat loads automatically from the WordPress admin menu. If you prefer, you can also check your stats from our site at https://www.web-stat.com. To get your login info, click on Settings: Web-Stat in the Word Press admin menu bar, then open the 'My Info' section of the Web-Stat Settings Panel. It contains your login ID (which is your email) and your password, which you can use to log into your account on the Web-Stat site. 104 79 105 80 106 81 == Screenshots == 107 1. Web-Stat Analytics: free real-time visitor stats. 108 2. Beautiful, live reports. 82 83 1. Make your site the best it can be! 84 2. With real-time stats... 109 85 3. Find out how visitors find your site. 110 4. Track visitor paths through your site.111 5. Monitor bounce rates and visit durations.112 6. Drill-down on individual users113 7. Detailed analytics on visitor profiles with location and referral information.114 8. Our users love our analytics :)115 116 86 4. Watch live as they navigate your pages. 87 5. Observe your visitor's behavior over time. 88 6. With beautiful, LIVE reports. 89 7. Web-Stat is live, and it is FREE 90 8. And our users love us :) 91 92 117 93 == Changelog == 94 95 = 2.5.4 = 96 * Released: 2025-04-12 97 * Housekeeping and minor improvements 118 98 = 2.5.3 = 119 99 * Released: 2025-03-10 … … 205 185 206 186 == Upgrade Notice == 187 = 2.5.3 = 188 * Faster version, more accurate. Update is recommended 207 189 = 2.0 = 208 190 * Faster version, stable, more accurate. Update is recommended
Note: See TracChangeset
for help on using the changeset viewer.