Plugin Directory

Changeset 3271503


Ignore:
Timestamp:
04/12/2025 02:42:42 PM (10 months ago)
Author:
webstat
Message:

Version 2.5.4 housekeeping and minor improvements

Location:
web-stat
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • web-stat/tags/2.5.4/Web-Stat.php

    r3253486 r3271503  
    44Plugin URI: https://www.web-stat.com/
    55Description: Free, real-time stats for your website with full visitor details and traffic analytics.
    6 Version: 2.5.3
     6Version: 2.5.4
    77Author: <a href="https://www.web-stat.com" target="_new">Web-Stat</a>
    88License: GPLv2 or later
     
    2828    private $has_json = false;
    2929    private $oc_a2 = null;
     30    private $is_admin = 0;
    3031   
    3132    public function __construct() {
     
    4344        add_filter('plugin_action_links', [$this, 'add_plugin_action_links'], 10, 2);
    4445        add_action('admin_head-plugins.php', [$this, 'add_custom_css']);
    45        
    46         // Manually load the .mo file as a fallback
    47         add_action('init', function() {
    48             load_textdomain('web-stat', WP_PLUGIN_DIR . '/Web-Stat/languages/web-stat-' . get_locale() . '.mo');
    49         });
    5046    }
    5147   
     
    6662        // Initialize plugin options
    6763        $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');
    6965        if (!$this->site_id) {
    7066            $this->site_id = wp_generate_uuid4();
    7167            update_option('wts_site_id', $this->site_id);
    7268        }
    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;
    7672        $this->language = substr(get_bloginfo('language'), 0, 2);
    7773        if (!preg_match('/^[a-z]{2}$/', $this->language)) {
    7874            $this->language = 'en';
    7975        }
    80         $this->old_uid = get_option('wts_web_stat_uid') ?? null;
     76        $this->old_uid = get_option('wts_web_stat_uid');
    8177        $this->has_json = extension_loaded('json');
    8278        $this->has_openssl = extension_loaded('openssl');
     79        if (current_user_can('install_plugins')) {
     80           $this->is_admin = 1;
     81        }
    8382    }
    8483   
     
    8887        wp_enqueue_script('wts_init_js', plugin_dir_url(__FILE__) . 'js/wts_script.js', array(), '1.0.0', true);
    8988        $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) {
    9190            $nonce = wp_create_nonce('wts_ajax_nonce');
    9291            if ($this->has_openssl) {
     
    103102            $wts_data['enc'] = $encryptedData;
    104103            $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;             
    105108        } else {
    106109            if (is_user_logged_in() && $this->has_json) {
     
    225228    private function show_page($page) {
    226229        $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';
    228231        if (!$host || !$page || !$this->oc_a2){
    229232           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  
    99        window.wts_data.fetched = 1;
    1010        initAdmin();
     11        recordHit();
    1112        return;
    1213    }
     
    5960        window.wts7.user_id = wts_data.user_id;
    6061        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";
    6264        wtslog7(wts_data.alias, wts_data.db);
    6365    };
  • web-stat/tags/2.5.4/readme.txt

    r3253486 r3271503  
    11=== Web-Stat ===
    22Contributors: 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 monitoring
     3Tags: 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
    44Requires PHP: 5.2.4
    55Requires at least: 4.9.5
    6 Tested up to: 6.7.2
     6Tested up to: 6.8
    77Stable tag: 2.5.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Real-time web analytics with full visitor details and clear, beautiful reports. Install Web-Stat Analytics and instantly observe your visitors live!
     11Free, 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!
    1212
    1313== 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 
     15Observe 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
     17Check 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 
     19You can install Web-Stat in just two steps: click on 'install', click on 'activate', and you are done! Web-Stat will initialize automatically.
     20
     21Our 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
    4828
    4929= Localization =
     
    5636* Turkish at [https://tr.web-stat.com](https://tr.web-stat.com/)
    5737* 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
    6246
    6347== Installation ==
    64 1. Search for 'Web-Stat' in the WordPress plugin library
     48
     491. Search for 'Web-Stat' in the Worpress plugin library
    65502. Click on 'Install'
    66513. Click on 'Activate'
    67 3. That's it: Web-Stat Analytics is now installed and recording your visitors in real time
     523. That's it: Web-Stat is now installed and recording your visitors in real time
    68534. Click on 'View My Stats' or on the Web-Stat link in the admin side bar and check out your visitors!
    6954
    70 
     55 
    7156== 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? =
     59No: 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? =
     62Web-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? =
    8865
    8966* Page views
     
    9774* Downtime alerts by email and SMS
    9875
    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 
    10176= What is my login info? =
    10277
    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 Analytics site.
     78Web-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.
    10479
    10580
    10681== Screenshots ==
    107 1. Web-Stat Analytics: free real-time visitor stats.
    108 2. Beautiful, live reports.
     82 
     831. Make your site the best it can be!
     842. With real-time stats...
    109853. 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 users
    113 7. Detailed analytics on visitor profiles with location and referral information.
    114 8. Our users love our analytics :)
    115 
    116 
     864. Watch live as they navigate your pages.
     875. Observe your visitor's behavior over time.
     886. With beautiful, LIVE reports.
     897. Web-Stat is live, and it is FREE
     908. And our users love us :)
     91 
     92 
    11793== Changelog ==
     94
     95= 2.5.4 =
     96* Released: 2025-04-12
     97* Housekeeping and minor improvements
    11898= 2.5.3 =
    11999* Released: 2025-03-10
     
    205185 
    206186== Upgrade Notice ==
     187= 2.5.3 =
     188* Faster version, more accurate. Update is recommended
    207189= 2.0 =
    208190* Faster version, stable, more accurate. Update is recommended
  • web-stat/trunk/Web-Stat.php

    r3253486 r3271503  
    44Plugin URI: https://www.web-stat.com/
    55Description: Free, real-time stats for your website with full visitor details and traffic analytics.
    6 Version: 2.5.3
     6Version: 2.5.4
    77Author: <a href="https://www.web-stat.com" target="_new">Web-Stat</a>
    88License: GPLv2 or later
     
    2828    private $has_json = false;
    2929    private $oc_a2 = null;
     30    private $is_admin = 0;
    3031   
    3132    public function __construct() {
     
    4344        add_filter('plugin_action_links', [$this, 'add_plugin_action_links'], 10, 2);
    4445        add_action('admin_head-plugins.php', [$this, 'add_custom_css']);
    45        
    46         // Manually load the .mo file as a fallback
    47         add_action('init', function() {
    48             load_textdomain('web-stat', WP_PLUGIN_DIR . '/Web-Stat/languages/web-stat-' . get_locale() . '.mo');
    49         });
    5046    }
    5147   
     
    6662        // Initialize plugin options
    6763        $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');
    6965        if (!$this->site_id) {
    7066            $this->site_id = wp_generate_uuid4();
    7167            update_option('wts_site_id', $this->site_id);
    7268        }
    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;
    7672        $this->language = substr(get_bloginfo('language'), 0, 2);
    7773        if (!preg_match('/^[a-z]{2}$/', $this->language)) {
    7874            $this->language = 'en';
    7975        }
    80         $this->old_uid = get_option('wts_web_stat_uid') ?? null;
     76        $this->old_uid = get_option('wts_web_stat_uid');
    8177        $this->has_json = extension_loaded('json');
    8278        $this->has_openssl = extension_loaded('openssl');
     79        if (current_user_can('install_plugins')) {
     80           $this->is_admin = 1;
     81        }
    8382    }
    8483   
     
    8887        wp_enqueue_script('wts_init_js', plugin_dir_url(__FILE__) . 'js/wts_script.js', array(), '1.0.0', true);
    8988        $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) {
    9190            $nonce = wp_create_nonce('wts_ajax_nonce');
    9291            if ($this->has_openssl) {
     
    103102            $wts_data['enc'] = $encryptedData;
    104103            $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;             
    105108        } else {
    106109            if (is_user_logged_in() && $this->has_json) {
     
    225228    private function show_page($page) {
    226229        $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';
    228231        if (!$host || !$page || !$this->oc_a2){
    229232           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  
    99        window.wts_data.fetched = 1;
    1010        initAdmin();
     11        recordHit();
    1112        return;
    1213    }
     
    5960        window.wts7.user_id = wts_data.user_id;
    6061        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";
    6264        wtslog7(wts_data.alias, wts_data.db);
    6365    };
  • web-stat/trunk/readme.txt

    r3253486 r3271503  
    11=== Web-Stat ===
    22Contributors: 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 monitoring
     3Tags: 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
    44Requires PHP: 5.2.4
    55Requires at least: 4.9.5
    6 Tested up to: 6.7.2
     6Tested up to: 6.8
    77Stable tag: 2.5.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Real-time web analytics with full visitor details and clear, beautiful reports. Install Web-Stat Analytics and instantly observe your visitors live!
     11Free, 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!
    1212
    1313== 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 
     15Observe 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
     17Check 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 
     19You can install Web-Stat in just two steps: click on 'install', click on 'activate', and you are done! Web-Stat will initialize automatically.
     20
     21Our 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
    4828
    4929= Localization =
     
    5636* Turkish at [https://tr.web-stat.com](https://tr.web-stat.com/)
    5737* 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
    6246
    6347== Installation ==
    64 1. Search for 'Web-Stat' in the WordPress plugin library
     48
     491. Search for 'Web-Stat' in the Worpress plugin library
    65502. Click on 'Install'
    66513. Click on 'Activate'
    67 3. That's it: Web-Stat Analytics is now installed and recording your visitors in real time
     523. That's it: Web-Stat is now installed and recording your visitors in real time
    68534. Click on 'View My Stats' or on the Web-Stat link in the admin side bar and check out your visitors!
    6954
    70 
     55 
    7156== 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? =
     59No: 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? =
     62Web-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? =
    8865
    8966* Page views
     
    9774* Downtime alerts by email and SMS
    9875
    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 
    10176= What is my login info? =
    10277
    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 Analytics site.
     78Web-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.
    10479
    10580
    10681== Screenshots ==
    107 1. Web-Stat Analytics: free real-time visitor stats.
    108 2. Beautiful, live reports.
     82 
     831. Make your site the best it can be!
     842. With real-time stats...
    109853. 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 users
    113 7. Detailed analytics on visitor profiles with location and referral information.
    114 8. Our users love our analytics :)
    115 
    116 
     864. Watch live as they navigate your pages.
     875. Observe your visitor's behavior over time.
     886. With beautiful, LIVE reports.
     897. Web-Stat is live, and it is FREE
     908. And our users love us :)
     91 
     92 
    11793== Changelog ==
     94
     95= 2.5.4 =
     96* Released: 2025-04-12
     97* Housekeeping and minor improvements
    11898= 2.5.3 =
    11999* Released: 2025-03-10
     
    205185 
    206186== Upgrade Notice ==
     187= 2.5.3 =
     188* Faster version, more accurate. Update is recommended
    207189= 2.0 =
    208190* Faster version, stable, more accurate. Update is recommended
Note: See TracChangeset for help on using the changeset viewer.