Since today WP is not showing current stats that would be showed in the Visitors & Page Views panel. It is just showing previous days stats.
]]>Hi there,
just wondering is it possible somehow to track multiple domains within a single WP power stat install?
]]>Come on! update this or donate the plugin to not so lazy people
I am always busy too, but I keep my work updated, so you are all excuses
Is tgis plugin still maintained… it is not updated for a while now
]]>Dear people,
The Statistics plugin I’m using on my https://www.dick-tillema.nl site shows statistics on pageviews and visitors. The numbers for ‘month’ and ‘year’ show not only the current year, but all the same months and years of previous years as well. Could you solve that bug?
Regards,
Dick
Hey,
when the settings ‘Dashboard Widget’ and ‘Replace Dashboard’ are enabled, I cannot login to my website anymore with any other Account than admin.
All my authors are getting locked out, because after the login they get redirected to the wp-power-stats dashboard. And it seems the do not habe any rights to show this dashboard so the WordPress message “No access”[…] appears.
Thanks and greetings.
]]>WP Power Stats breaks the plugin Network Media Library as discussed here at github: https://github.com/humanmade/network-media-library/issues/39
As stated by the plugin author, it has been suggested: Looking at the stack trace you provided, something in wp-power-stats is calling current_user_can() with null as its first parameter. You might want to let the plugin author know. Don’t forget to check to see if you’re using the latest version first.
I am using WP Power Stats version 2.2.3 at the time of this post. Anyway chance you can fix this?
]]>Identified Cookie(s) : power_stats_tracking_code
Vulnerability Details
[WEB APP SCANNER] identified a cookie not marked as secure, and transmitted over HTTPS.
This means the cookie could potentially be stolen by an attacker who can successfully intercept and decrypt the traffic, or following a successful man-in-the-middle attack.
Remedy
Mark all cookies used within the application as secure.
******
My question is, how and where can I ensure that this particular cookie is set as secure? Or is this hard-baked in to the plugin?
Since I’ve installed the WP Power Stats (>10 month) I’ve noticed that the Top Search Terms just keeps being empty and while I know that there ought to be some kind of search references.
The settings doesn’t include anything particular that I could have missed out, so looking for some pointers to check to figure this one out.
]]>Hi,
The widgets on teh stats page are displayed incorrectly.
Can you create a fix please to get them working, and better laid out.
Don’t know how to show you a screenshot thought in this feedback form.
Also Search Engine stats show 0% for an entire year of install – really ???
I see other people have the same issues
Hi,
I’ve noticed a possible bug and I wish to report it.
The issue is related to the power_stats_tracking_code
cookie.
This cookie is sended to the browser using setcookie
php function.
The problem is that if a user temporary delete the cookie, for example using the browser settings, this cookie will be removed permanently. from this point, If I continue to navigate the website I’ve lost the cookie. and this maybe could lead to error in reporting the statistics.
Maybe, editing the if statement in wp-power-stat.php (line 356) as follow
if (self::$data['id'] > 0 || self::$options['extend_session'] == 'yes' || !isset($_COOKIE['power_stats_tracking_code']))
could resolve the problem.
]]>Hello,
Since a few days ago I only can see 1 visitor a day. It’s like the plugin stop working?
Please advice.
thanks
c
Hello!
Because of the new EU law (GDPR) we have to delete the plugin and all tracking data. How can I ensure all data is cleared form the database?
Best regards,
Jan
Is it possible to display statistics older than a month? It appears that the plugin is logging them but the interface only shows Today, This Week, This Month.
]]>In the get_country() function, you should consider looking for the existence of header “CF-IPCountry” and using that as a lot of WordPress sites go through Cloudflare (a free CDN which speeds up WordPress site by offloading transactions to the CDN) as they are already doing a geo lookup and actively maintain it (for v4 and v6).
Here is their documentation on it https://support.cloudflare.com/hc/en-us/articles/200168236-What-does-Cloudflare-IP-Geolocation-do-
]]>I modified the get_ip function in wp-power-stats.php as below because this was not working for IPv6 addresses when a valid IPv4 address was available later in one of the header keys. This was causing issues with get_insert_data because a null $ip was being used and returned.
Proper support for IPv6 is probably needed if there is database tracking based on IP!
protected static function get_ip()
{
$newip = “”;
$header_keys = array(‘HTTP_CLIENT_IP’, ‘HTTP_X_FORWARDED_FOR’, ‘HTTP_X_FORWARDED’, ‘HTTP_X_CLUSTER_CLIENT_IP’, ‘HTTP_FORWARDED_FOR’, ‘HTTP_FORWARDED’, ‘REMOTE_ADDR’);
foreach ($header_keys as $key) {
if (array_key_exists($key, $_SERVER) === true) {
foreach (explode(‘,’, $_SERVER[$key]) as $ip) {
$ip = filter_var(trim($ip), FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE);
if (isset($ip) && !empty($ip)) { $newip = $ip; }
}
}
}
return $newip;
}
Hi,
I upgraded the plugin today and am getting several warnings in my php log which weren’t appearing in the previous version.
[13-Mar-2018 10:16:04 UTC] PHP Warning: Illegal string offset ‘name’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:04 UTC] PHP Warning: Illegal string offset ‘user_agent’ in /<snip>m/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:06 UTC] PHP Warning: Illegal string offset ‘name’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:06 UTC] PHP Warning: Illegal string offset ‘version’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:06 UTC] PHP Warning: Illegal string offset ‘name’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:06 UTC] PHP Warning: Illegal string offset ‘user_agent’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:06 UTC] PHP Warning: Illegal string offset ‘name’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
[13-Mar-2018 10:16:06 UTC] PHP Warning: Illegal string offset ‘version’ in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 285
I’ve noticed the following error appearing quite regularly in my php errors log.
Is it a problem? Are you able to resolve?
PHP Warning: strip_tags() expects parameter 1 to be string, array given in /<snip>/wp-content/plugins/wp-power-stats/wp-power-stats.php on line 609
]]>I had a look at the code and noticed the trigger to update stats is based on an Ajax call made by the browser.
90% of my traffic is redirects which don’t trigger a stats update. My site offers something kinda like a bit.ly translation but in a niche.
Is it possible to call wp power stats directly through php function calls, to trigger a stats update before the 302 redirect is made. I imagine all the information required is known via SERVER variables (browser type, referrer, page visited, etc)?
]]>Hi !
I just tried WP Power Stats for few hours and it seems that it doesn’t collect search keywords for some reasons.
Anyone else experience this issue ?
https://image.noelshack.com/fichiers/2018/05/3/1517430076-wp-power-stats.png
Thanks.
]]>Upon installing the plugin my site crashed. No recovery, I’ll have to restore from a backup.
Reading the support forum, I see this is a known issue. My PHP is indeed 5x rather 7x however, there is no notice of this issue in any of the install media.
Don’t you think this is something prospective users would want to know about?
The question of whether WordPress has desupported 5x is irrelevant. There are still plenty of people using it. My ISP refuses to go beyond 5 so this is not an possibility for me.
A simple notice in the install instructions would have prevented this and I’d still have a working site.
]]>Hi,
Installed Power stats few days ago and it seems very efficient.
The thing is that I didn’t manage avoiding it to include my own enters to the website.
Tried filling in exclusions ip : 10.0.0.12/24,192.168.1.4/24
But seems it still including me.
Thanks,
Shaul
It seems currently there’s no option in the plugin to view all collected data (i.e. by choosing from-to date, scrolling back by months, … or else).
Do you plan to implement such feature in the next releases?
]]>Hi,
concerning privacy I need a stat plugin that do not collect the whole IP.
Is it the case here ?
Thanks
]]>I see where it shows how many visitors I had today. So where do I see who they were that visited today? Where are the visitor stats?
]]>Where do I see the stats for exit links clicked? The link the visitor clicks on to take them to an affiliate site?
Larry
]]>Great and simple plugin. I would like to also know the visitor screen resolution (and not only the device).
]]>Hi, i want to export WP Power Stats analytics data as an individual file like excel or pdf. Does your plugin have this functionality?- if not- do you recommend a plugin to do that? Thanks
]]>Hi. Can you please update Uploads Stats also. Thanks
Which will track detail how many folder, type .dat, zip, php, txt, html,… in wp-content and also time / date
Thanks
]]>Hi there,
This is my first time here so I will try to be as clear and precise as I can.
First of all, many thanks for your work on this light weight yet powerful plugin.
I saw that you are preparing v2.2.2 so my issue may not be relevant to you (you tell me :-)).
Currently running WP Power Stats plugin v2.2.1, and connected as Admin. I cannot set roles (editor in my case) for (tab Permissions) : ./wp-admin/admin.php?page=wp-power-stats-settings
– Statistics View Roles
– Configuration Roles
I always get the following error:
Fatal error: Call to a member function remove_cap() on null in /myinstall/wordpress/wp-content/plugins/wp-power-stats/admin/config/index.php on line 92
I tried to force this by updating “wp-power-stats.php”, l. 117-119
// Permissions
‘view_roles’ => ‘editor’,
‘admin_roles’ => ‘administrator’,
but nothing changed.
Can you help ?
Many thanks.
Vince
]]>