Title: helened's Replies | WordPress.org

---

# helened

  [  ](https://wordpress.org/support/users/helened/)

 *   [Profile](https://wordpress.org/support/users/helened/)
 *   [Topics Started](https://wordpress.org/support/users/helened/topics/)
 *   [Replies Created](https://wordpress.org/support/users/helened/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/helened/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/helened/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/helened/engagements/)
 *   [Favorites](https://wordpress.org/support/users/helened/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 161 total)

1 [2](https://wordpress.org/support/users/helened/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/helened/replies/page/3/?output_format=md)…
[9](https://wordpress.org/support/users/helened/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/helened/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/helened/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/helened/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Doesn’t record referrer from secure websites](https://wordpress.org/support/topic/doesnt-record-referrer-from-secure-websites/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/doesnt-record-referrer-from-secure-websites/#post-12818021)
 * This isn’t a WassUp issue. It is caused by the security policy set by the W3C.
 * FYI. There is a workaround that a ‘https’ site admin can use to pass referrer
   information (sometimes) from their site to a direct external link with a ‘http’
   domain on their site (like in a blogroll) via a header ‘<meta>’ tag: [here](https://webmasters.stackexchange.com/questions/47405/how-can-i-pass-referrer-header-from-my-https-domain-to-http-domains/68343#68343)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] CSV export now has HTML numbers in Agent field](https://wordpress.org/support/topic/csv-export-now-has-html-numbers-in-agent-field/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/csv-export-now-has-html-numbers-in-agent-field/#post-12770657)
 * Thanks for reporting this.
 * I will look for a fix.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Exclude by IP adding http://](https://wordpress.org/support/topic/exclude-by-ip-adding-http/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/exclude-by-ip-adding-http/#post-12770620)
 * Hi ABrown95,
 * Thanks for reporting this problem!
 * Fortunately, the fix is an easy one that you can do yourself if you are comfortable
   working with code: in WordPress plugin editor, edit the file “lib/settings.php”
   and replace the ‘esc_url’ with ‘esc_attr’ and that’s it.
 * You can view this fix on Github [here](https://github.com/michelem09/wassup/commit/126f0ae581eff6d3f10ac688257c44af9cac5dd1?diff=unified)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] on certain pages only?](https://wordpress.org/support/topic/on-certain-pages-only/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/on-certain-pages-only/#post-12620365)
 * I’m afraid WassUp is designed to do the opposite..that is, track everything except
   for some pages(urls) listed in Options->Filters & Exclusions >> Exclude by URL
   request.
 * That said, theoretically you could do it with a hack of your WordPress theme 
   footer.php file. If you are familiar with coding, here’s how:
    - disable statistics recording in Wassup >>Options >>General Setup tab and save
    - edit your themes footer.php file and add this code near the bottom:
    -     ```
          <?php
          	  if( function_exists('wassupAppend') ){ //Wassup is installed
          	  	global $wassup_options;
          	  	$current_page_id = get_queried_object_id();
          		if( in_array($current_page_id, array(101,102,103,104)) ){
          	  		$wassup_options->wassup_active=1; //enable tracking
          			wassupAppend();
          	  		$wassup_options->wassup_active=0; //disable tracking
          		}
          	  }
          ?>
          ```
      
    - Replace the array numbers shown with the post_ids of the pages/posts you want
      Wassup to track. You can add more post-ids, but make sure that there is a 
      comma between each number.
 * Be warned, though, this hack might not work and editing code risks breaking your
   site.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Pins stand lost Pins](https://wordpress.org/support/topic/pins-stand/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/pins-stand/#post-12495305)
 * That’s good!
 * If you are comfortable with coding, you can start using your own API in WassUp
   by doing the following:
    1. Login to your host server, go to the CPANEL database section, and start phpMyAdmin
       or another MySQL tool
    2. select your site’s WordPress database if you have multiple databases
    3. click on SQL tab and enter the following statement in the input area:
        `UPDATE
       wp_wassup_meta SET meta_value='your_ipstack_key' WHERE meta_key='_geoip_apikey';`
    4. click “Go” and that’s it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Pins stand lost Pins](https://wordpress.org/support/topic/pins-stand/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/pins-stand/#post-12495082)
 * Nope, its not you.
 * As of Friday 2020-02-28, Wassup has exceeded the maximum quota of geoip requests
   allowed by IpStack free API. You should start seeing pins again in March. I am
   working on a solution where you can sign up for your own API key instead of using
   Wassup’s shared key. This will be in the next revision of WassUp.
 * Thanks for using WassUp!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Wassup Errors](https://wordpress.org/support/topic/wassup-errors/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/wassup-errors/#post-12492860)
 * Thanks for reporting this!
    The hyphen(-) in the temporary table name is triggering
   a syntax error in your MariaDb setup. I will fix this in the next revision of
   WassUp.
 * If you are familiar with PHP and want to fix it yourself, you can revise the 
   plugin file “lib/main.php” in WordPress plugin editor and change this line near
   the bottom of the file (line#1648):
 *     ```
       		//use a temporary table for large datasets 
       		$tmptable='_wassup_'.$current_user->user_login.rand();
       ```
   
 * to:
 *     ```
       		//use a temporary table for large datasets 
       		$tmptable='_wassup_'.rand();
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Wassup Version 1.9.4.5](https://wordpress.org/support/topic/wassup-version-1-9-4-5/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/wassup-version-1-9-4-5/#post-12438050)
 * Thanks for testing and for your feedback!
 * v1.9.4.5 is almost ready. We will officially release it when we fix an issue 
   of false positive spam with cyrillic-language urls.
 * If anyone else wants to test v1.9.4.5-RC, it is available on Github at [https://github.com/michelem09/wassup/](https://github.com/michelem09/wassup/releases/tag/v1.9.4.5-rc)
    -  This reply was modified 6 years, 4 months ago by [helened](https://wordpress.org/support/users/helened/).
      Reason: added link to v1.9.4.5
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] IPV6 addresses](https://wordpress.org/support/topic/ipv6-addresses-3/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/ipv6-addresses-3/#post-11296983)
 * Thanks for sharing your solution to this issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Wassup hangs](https://wordpress.org/support/topic/wassup-hangs/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/wassup-hangs/#post-11296977)
 * Thanks for reporting this.
    Please tell us about your server software (Win/Linux
   version, MySQL/MariaDB version, PHP version, etc) so we can try duplicate this
   and find a fix.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Errors in Log](https://wordpress.org/support/topic/errors-in-log-5/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/errors-in-log-5/#post-11296962)
 * Thank you for reporting this. We will investigate this error and try to get a
   fix out soon.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] ERROR: limit of 1 optimize task in 24-hours OPTIMIZE TABLE `wp_wassup`](https://wordpress.org/support/topic/error-limit-of-1-optimize-task-in-24-hours-optimize-table-wp_wassup/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/error-limit-of-1-optimize-task-in-24-hours-optimize-table-wp_wassup/#post-11296950)
 * The fix is to turn off Wassup’s automatic table optimization in Wassup-Options:
    -  – Login as WordPress Admin
    -  – Go to “Manage Files and Data” tab under Wassup menu >> Options tab
    -  – Scroll down until you see the “Table Optimization” section
    -  – Uncheck the “Enable automatic table optimization” checkbox
    -  – Scroll down a little more and click the “save settings” button.
    - And you are done!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] ThickBox included with the plugin conflicts with the one included in WordPress](https://wordpress.org/support/topic/thickbox-included-with-the-plugin-conflicts-with-the-one-included-in-wordpress/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/thickbox-included-with-the-plugin-conflicts-with-the-one-included-in-wordpress/#post-10066278)
 * Thank you for your helpful suggestions.
 * We have removed Thickbox from latest revision of Wassup available on GitHub (
   still in beta). If you would like to try this version, it is available here:
   
   [github.com/michelem09/wassup](https://github.com/michelem09/wassup/releases)
    -  This reply was modified 8 years, 4 months ago by [helened](https://wordpress.org/support/users/helened/).
      Reason: fixed typo
    -  This reply was modified 8 years, 4 months ago by [helened](https://wordpress.org/support/users/helened/).
      Reason: fixed link
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Security warning on admin-ajax.php](https://wordpress.org/support/topic/security-warning-on-admin-ajax-php/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/security-warning-on-admin-ajax-php/#post-10038192)
 * I cannot duplicate this problem on my test site. Are u still seeing this error
   in the latest version of Wassup?
    -  This reply was modified 8 years, 4 months ago by [helened](https://wordpress.org/support/users/helened/).
    -  This reply was modified 8 years, 4 months ago by [helened](https://wordpress.org/support/users/helened/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WassUp Real Time Analytics] Exclude WordFence](https://wordpress.org/support/topic/exclude-wordfence/)
 *  Plugin Contributor [helened](https://wordpress.org/support/users/helened/)
 * (@helened)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/exclude-wordfence/#post-10035862)
 * Thanks for responding so quickly.
    Unfortunately, the information in the screenshots
   is incomplete. Don’t hide the ip/hostname fields, unless it’s from your own host
   server. And in the referer field, only hide your site’s domain. Show the rest
   of the url, even if it’s just ‘/’. I need this info to understand these records
   and verify that they aren’t spam/hack attempts.
 * If don’t want the public seeing your referering urls or visitors, you can email
   me the screenshots/links directly at wassup (at) helenesit (dot) com. Thx.

Viewing 15 replies - 1 through 15 (of 161 total)

1 [2](https://wordpress.org/support/users/helened/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/helened/replies/page/3/?output_format=md)…
[9](https://wordpress.org/support/users/helened/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/helened/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/helened/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/helened/replies/page/2/?output_format=md)