Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#73 2009-03-27 19:29:52
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: wet_slimpattern: SlimStat integration into Textpattern
Els wrote:
redbot
Isn’t it something in your Slimstat settings? Did you check _config.php? I’m not sure but it could be this line:
/** Whether to display number of unique IP addresses */
var $show_uniques = false;
Els
Thank you for helping, unfortunately I have already tried your suggestion (as well as other settings modification) but the result is still the same.
I wonder what can be causing this… I wish someone who experienced the same issue before (and solved it) could point me in the right direction.
Thank you anyway.
Offline
Re: wet_slimpattern: SlimStat integration into Textpattern
before wet came up with this plugin, we used to add a sinle line of code in the root index.php. As shown on the slimstat site: include_once( $_SERVER["DOCUMENT_ROOT"]."/slimstat/inc.stats.php" );
One way of checking if it is a plugin problem is to disable it, add the code in index php and see if slimastat is working ok.
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Online
#75 2009-03-28 11:58:20
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: wet_slimpattern: SlimStat integration into Textpattern
colak wrote:
One way of checking if it is a plugin problem is to disable it, add the code in index php and see if slimastat is working ok.
Yes sorry, actually I took for granted it wasn’t a plugin problem. Anyway I already tried disabling the plugin and the result is the same.
I posted in this thread because I saw others had the same issue and I was wondering if someone managed to solve it.
P.S. maybe the problem is I’m using the MLP?
Last edited by redbot (2009-03-28 12:59:29)
Offline
#76 2009-05-24 00:15:24
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: wet_slimpattern: SlimStat integration into Textpattern
jstubbs wrote:
Update: The pages visited are entered into SlimStat when entering the link directly into the URL bar and pressing enter, but if clicking through the site pages, only the homepage shows up as one hit.
typeshige wrote:
I’m having the exact same issue. Only typing a URL registers a hit. Links in my pages going to other pages don’t show up.
redbot wrote:
I’m trying this plugin for the first time and it looks very nice.
Anyway I have the same issue: only typing a URL registers a hit.
Bah, now it’s happening to me too. The strange thing is that I’m using the same version of Slimstat on several other sites on the same server without a problem. Slimstat doesn’t seem to be supported anymore, googling only leads me to typeshige’s post in the google group…
I don’t assume one of you has found a solution?
Offline
#77 2009-05-24 18:17:30
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: wet_slimpattern: SlimStat integration into Textpattern
Els wrote:
I don’t assume one of you has found a solution?
Not me, I started to use google analytics.
Offline
#78 2009-11-08 22:11:09
- gerhard01
- Plugin Author
- Registered: 2006-12-07
- Posts: 108
Re: wet_slimpattern: SlimStat integration into Textpattern
SlimStat 2.0 has been released
SlimStat 2.1 has been released
Last edited by gerhard01 (2010-02-16 19:20:20)
Offline
#79 2009-11-08 23:47:16
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: wet_slimpattern: SlimStat integration into Textpattern
Oh thanks, will give it a try!
Offline
Re: wet_slimpattern: SlimStat integration into Textpattern
cool, looks even better :D
~~~~~~~~~~~~~| monolinea.com | pixilate.com | istockphoto.com/kemie |~~~~~~~~~~~~~
Offline
Re: wet_slimpattern: SlimStat integration into Textpattern
Looks great. I stopped using SlimStat a long time ago due to the massive database sizes.
On my server I have AwStats and also have access to Google Analytics. Does anyone have experience of these two apps and how they compare to the new SlimStat? I am also interested in Mint but have never used it. Feedback would be welcome!
Offline
Re: wet_slimpattern: SlimStat integration into Textpattern
gerhard01 wrote:
I just noticed this as I was installing it for a new project. Seems like Robert’s plugin still works when you edit the $statslogger
variable to reflect the new location: /slimstat/stats_include.php
Offline
Re: wet_slimpattern: SlimStat integration into Textpattern
Bump – looking for feedback for this question…
Offline
Re: wet_slimpattern: SlimStat integration into Textpattern
As Slimstat 2 has some extra features which are only enabled if the js code is used I was wondering as to what happens to those who surf without js. Would something like
$results = get_browser();
if ($results["javascript"] == 1) {
echo "<script type="text/javascript" src="/slimstat/?js"></script>";
else
@include_once( $_SERVER['DOCUMENT_ROOT'].'/slimstat/stats_include.php' );
}
work?
Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.
Online