• I’m using this plugin for a little over 2 month now.

    Sadly i’m not convinced that the data that is displayed is accurate.

    For example:
    When I click on Audience it says in the graphic that on Dec 30 I had 6 Visitors.
    When I change the filter to only show Dec 30 it drops to 2 visitors. 57,14% of whitch used Windows and 42,86% used Android.
    Now I change the filter to show Dec 1 + 31 Days. The effect: Dec 30 it displays 0 visitors as well on many other days. But i have had never no visitors for a day.

    I find this confusing. Either I’m handling it wrong or there are some serious bugs.

    //edit Fixed, 5 stars

Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Author Jason Crouse

    (@coolmann)

    Hi Chrisssssi,

    thank you for letting us know about this issue. We were not able to replicate it on our test environment. However we would like to get in touch with you to troubleshoot the problem where it is happening. We suspect that your DB server’s time settings are different from your WEB server time settings. You may want to enable the corresponding option in the settings, to see if that fixes the problem in your case. If it doesn’t, please contact us at https://support.getused.to.it/

    Thank you again for your feedback and for helping us make Slimstat a better tool!

    Best,
    Camu

    Thread Starter Chrisssssi

    (@chrisssssi)

    I assume you are talking about reset timezone setting. This was enabled the whole time.

    Plugin Author Jason Crouse

    (@coolmann)

    Yes, that’s the setting. What happens if you deactivate it?

    Thread Starter Chrisssssi

    (@chrisssssi)

    Same behavior.

    Example:
    after klick on audience:
    https://picturehost.eu/uploads/be7be5c90d60fb92b27acd2b5c79a770_1.png

    now i clicked on last 60 days (nothing else changed):
    https://picturehost.eu/uploads/99afff0cf2c6c4c001913c731f9ac329_2.png

    Plugin Author Jason Crouse

    (@coolmann)

    Interesting. However from what I can see, it’s only affecting the chart, and no other reports. Can you check what time is it on your MySQL server ( select now() ) and on your WEB server ( <?php echo date(‘Ymd h:i a’) ?> ) and see what you get?

    Thread Starter Chrisssssi

    (@chrisssssi)

    mysql
    2015-01-31 17:38:21

    php
    20150131 05:38 pm

    Plugin Author Jason Crouse

    (@coolmann)

    Did you use phpmyadmin? Could you do it either via command line or through a php script?

    Thread Starter Chrisssssi

    (@chrisssssi)

    <?php echo “php: “.date(‘Ymd h:i a’).” – “;
    $host = “x.de”;
    $db = “x”;
    $user = “xx”;
    $pass = “xxx”;
    $con = mysql_connect($host, $user, $pass) or die(mysql_error());

    mysql_select_db($db, $con);
    $query = “SELECT NOW() as datetime;”;
    $result = mysql_query($query, $con);
    $date = mysql_result($result,0,’datetime’);
    echo “sql: “.$date;

    ?>

    php: 20150131 06:52 pm – sql: 2015-01-31 18:52:50

    Plugin Author Jason Crouse

    (@coolmann)

    Thank you for all the info and for your patience. We are trying to reproduce the issue on our end. I’ll get back to you asap.

    Plugin Author Jason Crouse

    (@coolmann)

    Hi Chrisssssi,

    it turns out you were right, there was a bug in calculating date ranges with intervals (both positive, like Jan 14 + 3 days, and negative, like Jan 14 – 3 days). Congrats on unearthing this problem! We are working on a patch, which will be included in the next update. If you want to help us test it out, please contact us through our support site ( support.getused.to.it ) so that I can send you a copy of the next release!

    Plugin Author Jason Crouse

    (@coolmann)

    Hi Chrisssssi,

    we just released version 3.9.4 which addresses the bug you found. Please feel free to test it thoroughly and let us know if the issue is resolved. We would also appreciate if you could update your vote accordingly ??

    Best,
    Camu

    Thread Starter Chrisssssi

    (@chrisssssi)

    Hey,

    seems to work now. Thanks for the quick fix.

    Plugin Author Jason Crouse

    (@coolmann)

    You’re very welcome. Thank you for helping us make Slimstat a better product!

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Conflicting data’ is closed to new replies.