Hello,
Recently the who is online plugin stopped working for some reason. It's stuck at a certain number of users. I tried removing the plugin and installing it again but it only works for a couple of seconds until it's suck again. Not sure of what do about this honestly. Anyone can help?
Maybe there aren't more users currently viewing your gallery?
Clearly that's not possible. First of all we never have less than 40 users online. Secondly, we keep stats for the site and we had over 50,000 page views yesteray which isn't possible to reach with 3 users online. Thirdly, there can't be 3 users all day at any moment of the day, not even on a gallery with less users than ours.
I'm reporting this error because I saw a change in the behaviour of the plugin. It's simply stuck at 3 users online (3 registered users and 0 guests?!). I also noticed a similar error when using a php script to display the number of users online. It simply doesn't show the number, although the plugin itself works perfectly.
Please try if it works as expected with the plugin version which is bundled with cpg1.5.36.
Yes, I tried that already. No changes unfortunately it's stuck at 1 user online. If I log in it changes to 2 users (1 registered and 1 guest). If no php script is able to display the number of users online I guess there is a much bigger problem that does not depend on the plugin itself. But I wouldn't know where to look at honestly. No error log, also tried debug info and nothing useful comes up. I honestly have no idea of what to do.
Please tell me more about the other PHP script you used. As PHP cannot just "check" how much users are online, it always needs to collect and store some data like user ID or IP address while people are browsing your website.
This is the plugin I used: http://www.spyka.net/scripts/php/users-online
Quote from: stex on September 22, 2015, 06:50:37 PM
it's stuck at 1 user online. If I log in it changes to 2 users (1 registered and 1 guest)
Logged in users can be distinguished by their user ID. For guests, all data the plugin has is the IP address. So there's probably some issue while detecting the IP address of the visitor.
Please create a PHP file in your gallery root with the following content:
<?php
define('IN_COPPERMINE', true);
require_once('include/init.inc.php');
pageheader();
echo 'Your IP address: '.$raw_ip;
pagefooter();
?>
Visit that file with your browser and check if your IP address is correct. If you like, please post a link to that file, so we can check ourselves if it detects the correct IP address.
Thanks. I tried and it gave me a blank page! Bad sign, I guess? lol
Typo, sorry. I just updated the code in my last post.
Uhm, I believe there is indeed a problem detecting IPs generally because the one displayed doesn't match with the one I actually have. You can test it yourself: http://gagaimages.co/testip.php
It also doesn't match my external IP address. Instead, it displays 67.20.55.46, which is an IP address near Detroit (VPS Datacenter, LLC).
Oh so, that's the same IP I got. I'm guessing there is a problem with the server which only my host can fix, right?
Yes, please contact your host. For your information: 67.20.55.46 is the IP address of your server. You can try yourself with
ping gagaimages.co
Yeah, I didn't notice at first that it's my server's IP. Thanks for the heads up!
Just wanted to let y'all know that the issue is now solved. Ngix was not installed correctly, so my host fixed it! Thank you André.