FireStats is a Web site statistics System that currently supports:
- Standalone - Track any php enabled page on your site
- Wordpress - Track access to your Wordpress blog
Live demo is available here.
You can download the latest version here.
For more info, bug reports and wiki, visit the new FireStats homepage
August 25th, 2006 at 6:02 am
[…] FireStats,一个来访统计插件,项目还是很全的。 statistics […]
August 25th, 2006 at 10:26 am
[…] 插件页面: http://firefang.net/english/firestats […]
August 25th, 2006 at 5:02 pm
[…] מצאתי תוסף דומה גם לוורדפרס (הדגמה). […]
August 26th, 2006 at 12:49 pm
Nice plugin! Another stats-plugin for WordPress can be found here.
August 26th, 2006 at 3:21 pm
[…] אחרי שאנליטיקס לא עבד, התחלתי לחפש שירות אחר. לאחר חיפושים רבים וכושלים, מצאתי תוסף לוורדפרס בשם FireStats. […]
August 26th, 2006 at 4:27 pm
Nice Plugin. I need it and use it
August 27th, 2006 at 7:13 am
中文版安装失败是什么原因?
August 27th, 2006 at 7:15 am
juerock, english.
August 29th, 2006 at 6:52 am
תודה רבה
August 29th, 2006 at 10:42 pm
Nice Plugin!
August 30th, 2006 at 2:12 am
1. Your plugin ate my cat!
2. This is one of the best posts I’ve seen about graphs in css, which you might wanna take a look at if you’re gonna produce graphs.
August 30th, 2006 at 2:14 am
3. I’m an idiot and hit “Submit” before I finished.
4. I’m still suing you for indirectly eating my cat…
August 30th, 2006 at 9:10 am
1. Caius, it did? was that cat handicap, err, handicat?
2. thanks for the link, I`ll take a look - although I consider using an applet for dynamic interactive graphs.
3. You are an idiot for letting your late cat anywhere near my FireStats, after you have been warned that it had tried to eat cats before, with almost but not quite no success at all.
4. See you in court!
September 1st, 2006 at 4:58 pm
[…] Firestats is still in beta, but it’s looking incredibly attractive already. One simple plugin activation in your WP admin panel, and you’ll start getting in a flood of information about who (and what) is visiting your website. […]
September 2nd, 2006 at 3:50 pm
[…] 2 Sep 2006 FireStats 0.9.2-beta Posted by omry underFireStats […]
September 2nd, 2006 at 8:13 pm
[…] FireStats es un plugin de estadísticas que sirve tanto para WordPress como para cualquier web que use archivos PHP. […]
September 3rd, 2006 at 10:53 am
Killer plugin. I have uploaded the 0.9.3. I just noticed that it did not import the data from your counterize2 plugin. Any chance that will be fixed in the next release?
Keep up the great work!
Anthony
September 3rd, 2006 at 11:02 am
FireStats, must be backwards compatible bacause WordPress is backwards compatible.
September 3rd, 2006 at 11:07 am
Anthony, thanks.
what do you mean, it did not import?
did it say “0 records imported”, or did it give some error?
if its the formet, its probably because you already imported the data.
if its the later, I`d like to know what error message you receive, if any.
September 3rd, 2006 at 11:07 am
Guy,
Backward compatible with what?
there haven’t been a real release yet.
I do try to keep backward compatibility between beta releases (and so far I have managed to do it), but I can’t promise anything.
September 3rd, 2006 at 1:24 pm
It says the following:
Here you can import existing hits from your existing statistics system.
Currenty only Counterize is supported, but if you want to import from another statistics hits source, send me a note to omry@yadan.net and I`ll see what I can do. Looking for known statistics systems……
No known statistics system was detected, nothing to import.
I have Counterize2 by you activated and working so I know it is there.
Thanks
Anthony
September 3rd, 2006 at 2:22 pm
Anthony, can you look at the database, using a tool like phpmyadmin, and make sure you see Counterize table there?
what is the table name?
what wordpress version?
do you see firestats_* tables in the same database?
September 3rd, 2006 at 3:57 pm
The counterize table is named wp_Counterize.
I have 8 tables for firestats:
wp_firestats_excluded_ips
wp_firestats_hits
wp_firestats_options
wp_firestats_referers
wp_firestats_urls
wp_firestats_useragents
wp_firestats_useragent_classes
wp_firestats_version
Thanks.
Anthony
September 3rd, 2006 at 4:33 pm
Anthony, from phpmyadmin, open the database and run this in the sql section:
SHOW TABLES LIKE ‘wp_Counterize’
what did it return?
September 3rd, 2006 at 4:40 pm
Tables_in_taacus_wordpress (wp_Counterize)
wp_Counterize
I had to change the ‘ because the ones above did not work. But the table is there.
September 3rd, 2006 at 4:44 pm
so here is the problem, my code adds the ”.
did you just remove it?
what is your mysql version?
if you removed it, and it worked, do this:
find the function fs_counterize_detected in /php/sql-functions.php
and change the first line to this:
$sql = “SHOW TABLES LIKE “.$GLOBALS[’table_prefix’].”Counterize”;
(this removes the quotes).
September 3rd, 2006 at 4:53 pm
No go. I even changed the line to $sql = “SHOW TABLES LIKE ‘wp_Counterize’”; and it returned nothing to import.
In this comment section the template turns the ‘ into a strange character. I changed it to the standard ‘ and it worked. What I don’t understand is how the SHOW TABLES LIKE ‘wp_Counterize’ can return a good result in mysql but not in the script.
September 3rd, 2006 at 4:57 pm
My guess is that its the permissions.
try to login to phpmyadmin under the wordpress user and see what happens when you run the query.
if it fails, you need to give the wordpress user some more privileges.
September 3rd, 2006 at 5:53 pm
The user that wordpress uses has all permissions. I have tried the same query under the wordpress user and get a good response.
September 3rd, 2006 at 8:11 pm
The counterize import works in 0.9.1. I am going to cut and past the import section of it into the 0.9.3 and make sure it does work and doesn’t break things.
September 3rd, 2006 at 8:17 pm
In the import section I put:
/*
* Counterize detected? (wordpress specific)
*/
function fs_counterize_detected()
{
$sql = “SHOW TABLES LIKE ‘”.$GLOBALS[’table_prefix’].”Counterize’”;
global $fsdb;
$results = $fsdb->query($sql);
return $results != 0;
}
and it works! I have tried it on two blogs of mine and both have work. Not sure that it is what you will want to continue using but it does work for now.
Anthony
September 3rd, 2006 at 8:56 pm
Anthony,
Well spotted!
the bug was that I checked if GLOBAL was set and not GLOBALS.
thanks.
September 5th, 2006 at 4:37 pm
[…] אז קצת היסטוריה: בראשית, היה קאונטרייז, וראה עמרי כי טוב. ובוא כניסות, ובאו גם ורובוטים כחול אשר על שפת היום, וראה כי רע. והוסיף לקוד של קאונטרייז בוט אחר בוט, וראה כי טוב, עד שנמאס. ותיקן את קאונטרייז, ויקח בוטים מקובץ, וישלח התיקון לאנדרס, ולא ענה. וינג’ס, וינג’ס, עד שהתחיל את קאונטרייז 2, וישפר, וראה כי טוב. ויקרא את הקוד של קאונטרייז, וראה כי מלא היה בכפילויות ובברדק, ויבין כי רע. ויאמר לחבריו, למה לכם הקאונטרייז הזה, בואו אלי, ואני אראה לכם את האור, אני אראה לכם את FireStats. ויכתוב, ויראה כי לא ידע PHP, וילמד, ויכתוב, ויראה כי לא ידע HTML, וילמד. ויכתוב, ויראה כי לא ידע CSS, וילמד. ויכתוב, ויראה כי לא ידע JavaScript, וילמד. ויכתוב, ויקודד, ויכתוב, וישחרר גרסא ראשונה לציבור. ויחזור אנדרס מחופשה, ויראה כי קם בן ונכד לקאונטרייז, וישמח. […]
September 10th, 2006 at 5:17 pm
[…] Firestats looked rather impressive and I did go to the trouble (not much) of installing it and checking it out. It worked without a hitch despite the highly visible “this is beta software; use at own risk!” warning on the homepage. […]
September 13th, 2006 at 10:09 pm
[…] I’d say a well written (and still being worked on) plugin, with more features planned. So if you’re looking for a stats plugin, give this one a try and be sure to comment on omry’s blog […]
September 18th, 2006 at 6:33 am
Omry, very nice work. Question… how do I diplay hits and uniques on my blog? I’m sure I looked every where, but couldn’t find the info.
www.sbe38.org
don (el paso)
September 18th, 2006 at 7:02 am
Hi Don,
Thank you.
at the moment, there is no official way to do it, but rumors says you can try to put something like this in your blog footer:
<?php
echo "Hit count in last day : ".fs_get_hit_count(1)."<br/>";
echo "Unique hits in last day: ".fs_get_unique_hit_count(1)."<br/>";
?>
the 1 in the function call is the number of days to get.
its a floating point value (you can put 0.5 for example), also - if you dont specify it it means everything.
September 21st, 2006 at 1:24 am
Hi Omry, you have made my day with your plugin. It is awesome and so simple to understand now that I found it in my Dashboard, and you had to tell me it was there. With the code from the prior post in my footer that has just put the icing on the cake. I read the post about the guy that said it ate his cat. Well I don\’t have any cats on my website so I for sure don\’t have any complaints,lol. Thanks for replying so fast to my questions. What will happen when this is no longer beta?? Will we have to pay or will it be free.
September 21st, 2006 at 7:13 am
Pockets, glad you like it :).
FireStats will remain free for non-commercial use forever.
actually I just updated the license info on the wiki
I will probably add donate-via-paypal link soon, you are welcomed to express your gratitude by donating :).
September 26th, 2006 at 11:20 pm
I get the following error when I try to activate the plugin:
Warning: main(php/utils.php): failed to open stream: No such file or directory in …(i’ve cut the path out)… on line 13
Fatal error: main(): Failed opening required ‘php/utils.php’ (include_path=’.:/usr/local/lib/php’) in …(i’ve cut the path out)… on line 13
…any ideas?
Thanks,
Matthew
September 26th, 2006 at 11:27 pm
you have the file utils.php in the /php under FireStats dir?
I am guessing here, but maybe you tried to activate firestats before you finished uploading it to your server?
September 26th, 2006 at 11:29 pm
Aha! The FTP timed out, so not all the files were there. Working now beautifully…. sorry for being dumb about this. =P
September 26th, 2006 at 11:32 pm
great.
September 29th, 2006 at 3:39 am
Thanks for this. Possibly the best stats plugin that I’ve used thus far. And I’ve used all of them over the last few years. Again, excellent plugin and thanks for doing it.
September 29th, 2006 at 7:24 am
Nate, thank you.
feel free to leave a small review about it at http://www.wpplugins.org/plugin/firestats or at your blog.
October 8th, 2006 at 2:08 am
thanks for upgrading the plugin
October 16th, 2006 at 11:30 am
hi,
i tried to upgrade my firestats-0.9.5 to 0.9.8 and unfortunately i got a lot unserialize(): Error at offset 0 … it didn’t work and even it break my admin panel.
it turned well when i set it back to 0.9.5.
please help!
October 16th, 2006 at 4:19 pm
Please install 0.9.9, it solves that problem.
February 8th, 2007 at 11:41 am
[…] Auch hab ich mir des Plugin FireStats welches statistischer Art und Weise anzeigt, wer wann wo und von wo auf meine Seite zugegriffen hat, wobei des jetzt eher sehr sehr allgemein umschrieben ist. Was ich lustig an der Sache finde, ist die Tatsache, dass die meisten Leute durch Google auf meine Seite finden, und ich mit meiner Seite manchmal mit an den vordersten Plätzen stehe… Ähm… Ja… Nun… Lustig und beängstigend zugleich. Meine Seite ist erst seit zwei Wochen online, und schon auf den ersten Plätzen?? Aber das kann natürlich Zufall sein… […]
April 29th, 2007 at 8:33 pm
There is an error with this plugin when trying to use it with the Sidebar Widgets. [Version1.1.8]
It worked absolutely fine then I tried to upgarde to the R1.2.3 version, which by the way has an error also. So I completely uninstalled everything to do with FireStats, including the WP tables and have re-installed it from scratch. It seems to be working fine from the backend, but now the Sidebar Widget just shows the following:
* Pages displayed :
* Unique visitors : 0
* Pages displayed in last 24 hours :
* Unique visitors in last 24 hours : 0
I just can’t figure out what has gone wrong? Please advise.
April 29th, 2007 at 8:43 pm
Please open a bug report at the trac site (http://firestats.cc/newticket).