Skip to content

WP OnlineCounter

Thanks for your interest in WP OnlineCounter, a plugin for WordPress which counts the number of currently online visitors, the highest number of visitors online at the same time, and the total count of visitors. You can configure what should be displayed and how it should look like through its own options page in your WordPress dashboard. It also offers some very basic statistics regarding the most recent visitors to your site (only available if you are running on a server with at least MySQL 4.1).

Installation

Download the plugin and drop it into your WordPress’ plugins directory, usually “wp-content/plugins” (DON’T put it into a subdirectory). Enable it on the Plugins page in your WordPress dashboard. Paste the following code in your template where you want the counter to show up, or use either the Widget for WordPress Widgets or the Sidebar Module for the K2 theme.

<?php if(function_exists(’wp_onlinecounter’)) wp_onlinecounter(); ?>

Upgrade

If you are already using an older version of this plugin, please disable it on the Plugins page, overwrite the old file in your plugins directory with the new one you downloaded, and re-enable it again. This is necessary to perform an upgrade to the table structure in your database.

Download

Notes

The Statistics page under Manage in your WordPress dashboard only works if your are using at least MySQL 4.1, this is because older versions of MySQL are missing some features used in the database queries to get the results. This is not my fault, and there is NO way around it. Stop complainig about it to me and contact your hosting company to upgrade their outdated software.

126 Comments

  1. auffret yannick wrote:

    hello

    im french and i would a wp onlinecounter for my blog and the files for install .
    Thanks.

    Freitag, September 1, 2006 at 19:08 | Permalink
  2. dmry wrote:

    I translate your great plugin.

    Turkish 0.11 version here and can download here.

    Freitag, September 8, 2006 at 13:08 | Permalink
  3. Jenda wrote:

    I just installed this plugin and am really liking it. I am having a problem with it counting the total number of visitors though. Namely, it’s not and I’m not sure why. I put a number in that field in the options screen but it’s still not counting the total number of visitors to my site.

    I have a request too. I love the counter stats page where it lists out the IP address of the current visitors. Is there any way to keep a running log of this info? I noticed that when someone leaves, their IP address is gone as well. Just curious.

    Thank you for a wonderful plugin! If I could only get it to count the total number of visitors, I would be ecstatic about this plugin!

    Dienstag, September 12, 2006 at 5:56 | Permalink
  4. Jenda wrote:

    One more thing, I think you have a bug in the table option. You have it set to create a table called “onlinecounter” but the script calls for the table to be named “wp_onlinecounter.” At least that’s what I found when I set it up on my blog. :-)

    Dienstag, September 12, 2006 at 5:59 | Permalink
  5. nepf wrote:

    Hi Jan,

    ich glaube, ich habe ein bug entdeckt.

    Guckst Du hier:

    http://forum.wordpress.de/showthread.php?p=60503#post60503

    Dienstag, September 12, 2006 at 19:34 | Permalink
  6. Jan wrote:

    [quote comment="85"]Hi Jan,

    ich glaube, ich habe ein bug entdeckt.

    Guckst Du hier:

    http://forum.wordpress.de/showthread.php?p=60503#post60503/quote

    danke, ist gefixed!

    Dienstag, September 12, 2006 at 21:18 | Permalink
  7. Jan wrote:

    [quote comment="58"]I translate your great plugin.

    Turkish 0.11 version here and can download here.[/quote]

    thanks for your translation, but there is no need for it as you can change the labels to anything you want in the options!

    Dienstag, September 12, 2006 at 21:20 | Permalink
  8. Jenda wrote:

    Nepf,

    Thanks for the link but I can’t read it. Alas, I only speak English. I will try to translate though and see if I can’t get it figured out. Thanks!

    Mittwoch, September 13, 2006 at 0:39 | Permalink
  9. Jan wrote:

    [quote comment="80"]I just installed this plugin and am really liking it. I am having a problem with it counting the total number of visitors though. Namely, it’s not and I’m not sure why. I put a number in that field in the options screen but it’s still not counting the total number of visitors to my site.[/quote]

    sorry, i really can’t figure out why that would happen, as long as the other data is right this should work, too

    [quote comment="80"]
    I have a request too. I love the counter stats page where it lists out the IP address of the current visitors. Is there any way to keep a running log of this info? I noticed that when someone leaves, their IP address is gone as well. Just curious.[/quote]
    i think the best would be if you try any of those more advanced, “real” statistics plugins for wordpress or see if you can get some log analyzer tool like AWStats or Webalizer on your server … i wrote just a simple counter ;)
    [quote comment="80"]
    Thank you for a wonderful plugin! If I could only get it to count the total number of visitors, I would be ecstatic about this plugin![/quote]
    Thanks for the compliments! can you give me the PHP and MySQL version running on your server?

    Mittwoch, September 13, 2006 at 0:47 | Permalink
  10. Jenda wrote:

    Jan,

    Here is the requested info:

    PHP Version 4.4.2
    MySQL Version 4.1.19-standard

    I translated enough of the comments above from Nepf regarding this site, http://forum.wordpress.de/showthread.php?p=60503#post60503 and I replaced line 342 but it’s still not counting the total number of visitors.

    As I said above. I had to create the table wp_onlinecounter in order to get the plugin to work and that is different than the directions in the plugin. I’m wondering if this is preventing the total number of visitors from calculating?

    Mittwoch, September 13, 2006 at 2:32 | Permalink
  11. Jenda wrote:

    Jan,

    Here is the requested info:

    PHP Version 4.4.2
    MySQL Version 4.1.19-standard

    As I said above. I had to create the table wp_onlinecounter in order to get the plugin to work and that is different than the directions in the plugin. I’m wondering if this is preventing the total number of visitors from calculating?

    Mittwoch, September 13, 2006 at 4:05 | Permalink
  12. nepf wrote:

    [quote comment="88"]Nepf,

    Thanks for the link but I can’t read it. Alas, I only speak English. I will try to translate though and see if I can’t get it figured out. Thanks![/quote]

    BIG FAT WARNING from the plugin author: This change of the code does NOT give you the same results like the original code does, it may look the same at first glance, but it does NOT! You’ve been warned…

    Goto Line 342

    look for:

    $counts = $wpdb->get_results(”SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp”);

    replace with:

    $counts = $wpdb->get_results(”SELECT t1.ip,t1.uri,t1.timestamp FROM “.$table_prefix.$wpoc_tablename.” t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM “.$table_prefix.$wpoc_tablename.” GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp”);

    that’s it!

    Mittwoch, September 13, 2006 at 8:05 | Permalink
  13. Jenda wrote:

    Thanks Nepf. I got that figured out and replaced the code but it’s still not counting my visitors. The number online works and the maximum concurrent works but the total visitors still does not work. I’ve posted here and on WP support forums and no one has been able to figure it out.

    Donnerstag, September 14, 2006 at 2:21 | Permalink
  14. Engin wrote:

    This is a great accessory. i am using this and i am very ease. Thanks

    Sonntag, September 17, 2006 at 16:18 | Permalink
  15. Impex wrote:

    der counter funktioniert bei mir nicht: http://the-impex.com/cms/

    Samstag, September 23, 2006 at 10:04 | Permalink
  16. Peter wrote:

    hey i just update from wp-online counter 0.1 version to newest one and everything crashed on counts

    on admin panel i got:

    WordPress database error: [Unknown column ‘maxon’ in ‘field list’]
    SELECT maxon FROM wp_onlinecounter ORDER BY maxon DESC LIMIT 1

    on the blog i got:

    WordPress database error: [Unknown column ‘maxon’ in ‘field list’]
    SELECT maxon FROM wp_onlinecounter ORDER BY maxon DESC LIMIT 1

    WordPress database error: [Unknown column ‘maxontime’ in ‘field list’]
    SELECT maxontime FROM wp_onlinecounter ORDER BY maxon DESC LIMIT 1

    WordPress database error: [Column count doesn’t match value count at row 1]
    INSERT INTO wp_onlinecounter VALUES (’1159214195′, ‘85.222.20.82′, ‘1′, ‘0′, ‘0′, ‘/index.php’)

    WordPress database error: [Unknown column ‘maxon’ in ‘field list’]
    UPDATE wp_onlinecounter SET maxon=’’, maxontime=’’ WHERE timestamp=’1159214195′

    Montag, September 25, 2006 at 21:59 | Permalink
  17. Peter wrote:

    Nevermind i clear the table.

    Montag, September 25, 2006 at 22:04 | Permalink
  18. Jan wrote:

    [quote comment="160"]Nevermind i clear the table.[/quote]

    it would have been sufficient to deactivate and reactivate the plugin …

    Montag, September 25, 2006 at 22:16 | Permalink
  19. Benny MC wrote:

    Hello

    I tried installing your WP Online Counter. It Appears on the sidebar but the details in the manage admin section of WP under WP Online Counter says:

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU]
    SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp

    What is wrong?
    Cheers

    Donnerstag, September 28, 2006 at 10:05 | Permalink
  20. Sephiroth wrote:

    Okay, your online counter is an excellent plugin. Now, I’ve been using it for a couple months on my blog with no problems at all, but today as I was poking around my admin panel, I noticed a page (that was added by the plugin) that had a nasty error on it. O_o

    What BennyMC said:

    Hello

    I tried installing your WP Online Counter. It Appears on the sidebar but the details in the manage admin section of WP under WP Online Counter says:

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU]
    SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp

    What is wrong?
    Cheers

    I too, was experiencing this problem, which for some unknown reason, the query itself worked fine on localhost, but it didn’t work on my actual host, where my blog is installed and public..

    However, I did manage to figure out a temporary fix. (I’m using OnlineCounter version 0.11, php 4.3.11, mysql 4.0.27)

    in wp-onlinecounter.php I changed

    $counts = $wpdb->get_results(”SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp”);

    to:

    $counts = $wpdb->get_results(”SELECT ip,uri,timestamp FROM “.$table_prefix.$wpoc_tablename.” GROUP BY ip”);

    and that works for me. :p All-in-all, the plugin works great. ^_^

    Montag, Oktober 2, 2006 at 11:05 | Permalink
  21. Jan wrote:

    [quote comment="205"]$counts = $wpdb->get_results(”SELECT ip,uri,timestamp FROM “.$table_prefix.$wpoc_tablename.” GROUP BY ip”);[/quote]yes, that query works, but the resulting data is not quite what i wanted - if you can upgrade to at least MySQL 4.1 or even better to 5.0, the original query will work as intended!

    Montag, Oktober 2, 2006 at 11:51 | Permalink
  22. InkBlot wrote:

    Like others, I wasn’t getting a “total” count either. I changed this:

    [quote] //increase count only if visitor is under $ignore_level
    //get_currentuserinfo();
    if(($visitor

    Dienstag, Oktober 3, 2006 at 2:30 | Permalink
  23. InkBlot wrote:

    Oops..my comment got eaten by bad formatting. Should it happen again, I basically removed bit which checks user level vs ignore level for increasing the count.

    I changed this:

    //increase count only if visitor is under $ignore_level
    //get_currentuserinfo();
    if(($visitor

    To this:
    //increase count only if visitor is under $ignore_level
    //get_currentuserinfo();
    if($visitor

    Dienstag, Oktober 3, 2006 at 2:38 | Permalink
  24. Alex wrote:

    i have installed the plugin but the my wp-admin>manage>WP- OnlineCounter returned this:

    Time IP URI
    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU]
    SELECT t1.ip,t1.uri,t1.timestamp FROM alex_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp

    I am pretty ignorant about MySQL and the like.

    Help!

    Dienstag, Oktober 3, 2006 at 9:57 | Permalink
  25. Benny MC wrote:

    Jan Writes ["yes, that query works, but the resulting data is not quite what i wanted - if you can upgrade to at least MySQL 4.1 or even better to 5.0, the original query will work as intended!"]

    The only problem is that i do not have access to the MySQL database since the website is being hosted on free webspace, which i have no control over.

    Cheers

    Donnerstag, Oktober 5, 2006 at 16:53 | Permalink
  26. Benny MC wrote:

    Sephiroth writes [" However, I did manage to figure out a temporary fix. (I’m using OnlineCounter version 0.11, php 4.3.11, mysql 4.0.27)

    in wp-onlinecounter.php I changed

    $counts = $wpdb->get_results(”SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp”);

    to:

    $counts = $wpdb->get_results(”SELECT ip,uri,timestamp FROM “.$table_prefix.$wpoc_tablename.” GROUP BY ip”);"]

    I tried that but my whole website went down and wouldn’t load. The webpages couldn’t be viewed so i changed it back to the original and now everything is OK.

    Cheers

    P.S. How do you quote??

    Donnerstag, Oktober 5, 2006 at 17:02 | Permalink
  27. Jan wrote:

    [quote comment="232"]P.S. How do you quote??[/quote]

    you can quote by clicking the link “Zitat” above a comment, that’s german for “quote”.

    Donnerstag, Oktober 5, 2006 at 18:44 | Permalink
  28. hwa wrote:

    thanks for the plugin, working great with my blog ;)

    Dienstag, Oktober 10, 2006 at 17:48 | Permalink
  29. gidibao wrote:

    Thx for your great plugin Jan!
    A few months ago, I’ve downloaded your plugin and the widget plugin: where do I can find now (download) the sidebar widget for WP-OnlineCounter?
    ps:
    I had a problem as yours whith my HD… :(
    Have a nice day :)

    Mittwoch, Oktober 11, 2006 at 11:46 | Permalink
  30. jack wrote:

    It doesnt seem to work :s

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT t2.ip, MAX(timestamp) AS tstamp FROM wp_onlinecounter t2]
    SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT t2.ip, MAX(timestamp) AS tstamp FROM wp_onlinecounter t2 GROUP BY t2.ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.tstamp

    Mittwoch, Oktober 11, 2006 at 14:27 | Permalink
  31. nepf wrote:

    Hallo Jan,

    ich würde die counter Ergebnisse gern unter “Verwalten” bei den WP-OnlineCounter Stats anzeigen.

    Geht das?
    Und wenn ja, wie?

    Donnerstag, Oktober 12, 2006 at 11:58 | Permalink
  32. Old Cat wrote:

    Hey, a great plugin!

    But a tiny little mistake… in Options>>WP OnlineCounter, there’s a field ‘Ignore Level’, and the explanation says, ‘Set user level for visitors who should not be counted. Set to anything above 10 to count everyone.’ I set to 100 and it counted nobody… then I changed it to 9, and it started counting. So maybe you can change that explanation. I changed it myself already ;)
    Cheers~

    Montag, Oktober 16, 2006 at 23:51 | Permalink
  33. baymyo wrote:

    great plugin… thank you… | muhteşem eklenti ellerinize saÄlÄk buradan hakan abiyede teşekkür ederim…

    Samstag, Oktober 28, 2006 at 21:48 | Permalink
  34. Zune wrote:

    Will zune dominate Ipod.

    Montag, Oktober 30, 2006 at 15:43 | Permalink
  35. Xebber wrote:

    It doesn’t work. On the site it’s good, but in the adminpanel i’ve got the following error:

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU]
    SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp

    What’s wrong? Help!

    Montag, Oktober 30, 2006 at 23:49 | Permalink
  36. heikke wrote:

    ahäm. wenn mir nach installation des plugins gemeldet wird, dass die entsprechende tabelle in der datenbank nicht zu finden ist, dann hat das aber nichts damit zu tun, dass mysql zu alt ist, oder?

    Dienstag, November 14, 2006 at 20:28 | Permalink
  37. heikke wrote:

    super, jetzt klappt’s!
    das war’s: ggf. tabelle selbst erstellen.
    merci! :)

    Mittwoch, November 15, 2006 at 10:11 | Permalink
  38. Fabian wrote:

    “WordPress database error: [Table 'tdb19.wp_onlinecounter' doesn't exist]
    SELECT count FROM wp_onlinecounter ORDER BY count DESC LIMIT 1

    deactivate - reactivate has nothing changed. the table is not been created. can you help?

    thanks!

    Dienstag, Dezember 5, 2006 at 2:57 | Permalink
  39. Elisabeth wrote:

    hi jan;
    möchte gerne den zähler auf den richtigen stand bringen -> 4795
    wie macht man das?

    ne schöne jrooß

    Mittwoch, Dezember 6, 2006 at 16:05 | Permalink
  40. Curare wrote:

    Ein sehr praktisches Plugin. Das Einzige was etwas störend ist, ist das (Search-)Bots mitgezählt werden. Das ist für die Gesamt-Besucherzahl natürlich unschön ;-)

    Mittwoch, Dezember 20, 2006 at 16:36 | Permalink
  41. John wrote:

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU]
    SELECT t1.ip,t1.uri,t1.timestamp FROM wp_onlinecounter t1 JOIN (SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROUP BY ip ) v1 ON t1.ip=v1.ip AND t1.timestamp=v1.timestamp
    Time IP URI

    I am getting this error in manage plugins tab. Can u fix this ?

    Donnerstag, Januar 4, 2007 at 6:06 | Permalink
  42. flix wrote:

    [quote comment="1077"]Ein sehr praktisches Plugin. Das Einzige was etwas störend ist, ist das (Search-)Bots mitgezählt werden. Das ist für die Gesamt-Besucherzahl natürlich unschön ;-)[/quote]

    To repeat this feature request: the ability to ignore search bots like googlebot or yahoo’s slurp might be a very useful idea because of their frequent visits.

    identify them with their agent info should be very easy and reliable!

    looking forward for the next release.

    nevertheless: great plugin!!

    Montag, Januar 8, 2007 at 13:34 | Permalink
  43. Pin wrote:

    I tried installing it, but it doesn’t even appear on the sidebar… please help!

    Montag, Januar 15, 2007 at 2:29 | Permalink
  44. Jan wrote:

    [quote comment="1389"]I tried installing it, but it doesn’t even appear on the sidebar… please help![/quote]

    have you also installed the Widget or Sidebar Module? if not, you need to add some code to your template.

    Sonntag, Januar 21, 2007 at 23:42 | Permalink
  45. Jochen wrote:

    See my entry under page rank
    counter is installed, i get the admin page but neither counter nor rank show on side bar…
    Help?
    Jochen

    Donnerstag, Februar 1, 2007 at 8:20 | Permalink
  46. Jochen wrote:

    [quote comment="1722"]See my entry under page rank
    counter is installed, i get the admin page but neither counter nor rank show on side bar…
    Help?
    Jochen[/quote]

    yes i installed all of it, the manage page is ok but it does not show up on side bar

    Donnerstag, Februar 1, 2007 at 14:52 | Permalink
  47. Jochen wrote:

    Gibt es einen weg den Author zu erreichen? Hier bekomme ich keinerlei antworten.
    Jochen

    Freitag, Februar 2, 2007 at 2:24 | Permalink
  48. maik wrote:

    WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU]

    Donnerstag, Februar 8, 2007 at 22:11 | Permalink
  49. Jan wrote:

    [quote comment="1834"]WordPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT ip, MAX(timestamp) timestamp FROM wp_onlinecounter GROU][/quote]

    please read the notice at the top of the page and some comments from other people, it’s because your version of MySQL is too old!

    Montag, Februar 12, 2007 at 2:32 | Permalink
  50. win wrote:

    hi jan. i’m trying to edit the following code in your plugin

    [code]
    #add_option(’wpoc_header’, ‘Counter’, ‘WPOC: output before counter’);

    add_option(’wpoc_header’, ‘Counter’, ‘WPOC: output before counter’);

    #add_option(’wpoc_footer’, ”, ‘WPOC: output after counter’);

    add_option(’wpoc_footer’, ”, ‘WPOC: output after counter’);

    [/code]

    but it doesn’t seem to update when i refresh the page. any ideas?

    Mittwoch, Februar 21, 2007 at 3:05 | Permalink
  51. win wrote:

    never mind jan. i made it harder than it should be. i figured it out ;) thanks for the great plugin :)

    Mittwoch, Februar 21, 2007 at 3:11 | Permalink
  52. chabfares wrote:

    hi can u hep me

    Donnerstag, Februar 22, 2007 at 8:00 | Permalink
  53. I am user that plugin is great.. Thank you so much

    Freitag, April 13, 2007 at 11:12 | Permalink
  54. Joerg wrote:

    Hallo Jan,

    der berühmte Fehler:

    WordPress Datenbank-Fehler: [Table 'wordpress.wp_onlinecounter' doesn't exist]
    SELECT maxon FROM wp_onlinecounter ORDER BY maxon DESC LIMIT 1

    mySQL Version: 5.0.27
    PHP: 5.1.6
    WP: 2.1.3

    Könntest Du bitte für die kaum Englisch-sprechenden Anwender/innen erklären, wie man diesen Fehler beheben kann?

    Ich habe das Plugin bereits einmal auf einem anderen Server installiert. Dort läuft es prima. Nur auf diesem leider nicht.

    Eine Antwort wäre nett.

    Joerg

    Mittwoch, April 25, 2007 at 20:13 | Permalink
  55. Jan wrote:

    [quote comment="3272"]Table ‘wordpress.wp_onlinecounter’ doesn’t exist[/quote]

    Hi Joerg, für mich klingt das so, als ob die Tabelle in der Datenbank nicht existiert. Versuch mal das Plugin zu deaktivieren und dann wieder zu aktivieren, eigentlich sollte es die Tabelle dann selber erstellen. Wenn’s nicht klappt kann ich dir den SQL Code schicken mit dem die Tabelle erstellt wird, dann kannst du sie von Hand anlegen (z.B. mit phpMyAdmin).

    Mittwoch, April 25, 2007 at 21:34 | Permalink
  56. Karlg wrote:

    Fatal error: Call to undefined function wp_onlinecounter() in D:\wwwroot\www.holzhandel.mobi\wordpress\wp-content\plugins\widget_wpoc.php on line 17

    what can I do?

    Regards
    Karl

    Samstag, April 28, 2007 at 23:54 | Permalink
  57. ozkuloto wrote:

    ÖZKUL OTO KURTARMA

    37 yÄllÄk tecrübe ve güvenle deneyimli kadromuzla RampalÄ oto kurtarma araçlarÄmÄzla ankara içi ve türkiyenin her yerine 7/24 kesintisiz hizmet en uygun fiyatlarla…

    37 yÄllÄk tecrübe ve güven

    rampalÄ oto kurtarma araçlarÄ

    vinç hizmetleri

    oto park hizmeti

    şoför temini

    hasarlÄ araç alÄm satÄmÄ

    Bize 24 saat ulaşabileceÄiniz Acil Cepler

    0532 734 91 57
    0533 601 91 53
    0533 724 38 25
    0552 734 91 57
    0542 660 38 38

    Dienstag, Mai 8, 2007 at 10:26 | Permalink
  58. stephan wrote:

    Der include oben ist falsch, sollte so heißen:

    Montag, Mai 14, 2007 at 22:52 | Permalink
  59. kReEsTaL wrote:

    Hi, first I pasted the code you wrote at the top of the page, namely:

    then, since this does not work, I read the plugin instructions directly in the Wordpress plugin editor, and saw that the correct code to insert in the blog’s theme is:

    Thought it might help!

    Dienstag, Juni 19, 2007 at 13:48 | Permalink
  60. kReEsTaL wrote:

    Well, my code inserts do not work :/ What I was trying to say is that there’s no need to call the function wp_pagerank(), but the function wp_onlinecounter().

    Dienstag, Juni 19, 2007 at 13:50 | Permalink
  61. makru wrote:

    Hallo Jan,

    habe gerade versucht die Widgetversin des counters zu installieren.
    Leider funktioniert das nicht so richtig. In der Sidebar erscheint die Meldung:
    Fatal error: Call to undefined function wp_onlinecounter() in /home/makruch/public_html/wordpress/wp-content/plugins/widget_wpoc.php on line 17

    Kannst du weiterhelfen ?
    Gruss
    Makru

    Montag, Juni 25, 2007 at 0:50 | Permalink
  62. imran wrote:

    zor zamanlara sÄkÄşmÄştÄr sevda…

    Donnerstag, Juli 5, 2007 at 10:23 | Permalink
  63. Dimitri wrote:

    i get this error

    WordPress database error: [Table 'DB######.wp_onlinecounter' doesn't exist]

    any way i can make that table myself. i have no idea how though.

    or is there any other trick to make that table in the DB?

    thanks,

    Dimitri

    Montag, Juli 9, 2007 at 12:47 | Permalink
  64. Edwin wrote:

    [quote][/quote]

    Shouldn’t that be ‘wp_onlinecounter’ ?[quote post="7"]

    Mittwoch, Juli 11, 2007 at 15:50 | Permalink
  65. mstgngr wrote:

    thanks

    Samstag, Juli 14, 2007 at 5:46 | Permalink
  66. mstgngr wrote:

    very nice thanks :)

    Donnerstag, Juli 26, 2007 at 20:14 | Permalink
  67. Please answer! wrote:

    Why deleted my comment? Download not act!

    Montag, August 6, 2007 at 19:55 | Permalink
  68. mstgngr wrote:

    i like it :) thanks

    Samstag, August 11, 2007 at 18:35 | Permalink
  69. Jan wrote:

    [quote comment="5504"]Why deleted my comment? Download not act![/quote]
    Because the download does indeed work, your provided domain is no real website and mails to your provided mail address bounce because your domain has no MX record. Enough reasons?

    Samstag, August 11, 2007 at 21:34 | Permalink
  70. great plugin,
    thanks..

    Sonntag, August 19, 2007 at 6:56 | Permalink
  71. FiDra wrote:

    I used 2.2 Wordpress, and I install this plugin. When I activated it, there was an error as it shown below:

    Plugin could not be activated because it triggered a fatal error.

    Anybody help me, please.

    Dienstag, September 4, 2007 at 12:05 | Permalink
  72. Vigi wrote:

    Hi Du!

    Ich hätte 2 Anliegen:
    1. Ich benutze den WP OnlineCounter und dazu das Widget-Plugin. Jedes Element meiner Sidebar mus mit versehen werden. Wenn ich aber in den WP OnlineCounter Settings vor den Counter und dahinter setze, passiert etwas gaaanz komisches. Auch im Quelltext des Couters selbst kann ich den Code nich verwenden. Gibts da irgendeine Möglichkeit?
    2. Welches Plugin verwendest du für die Zitat-Funktion in den Kommentaren, sofern das überhaupt ein Plugin ist?

    Donnerstag, Oktober 4, 2007 at 19:43 | Permalink
  73. cem wrote:

    thank you very much

    Sonntag, Oktober 14, 2007 at 5:14 | Permalink
  74. Markus wrote:

    Welchen code muss ich in mein Template einbauen, wenn ich den Counter an eine andere Postition haben möchte.

    Sonntag, Oktober 28, 2007 at 1:04 | Permalink
  75. Markus wrote:

    Servus nochmal,
    ich habe den Counter per Code wie oben angezeigt in die Fusszeile eingebaut, doch leider wird dieser nicht angezeigt. Bitte um Hilfe

    Sonntag, Oktober 28, 2007 at 13:21 | Permalink
  76. Markus wrote:

    Ja hab ich, unter Einstellungen WP-Onlinecounter kann ist neu dazugekommen

    Sonntag, Oktober 28, 2007 at 17:43 | Permalink
  77. geekgirl wrote:

    Can someone please tell me what to change the settings to…to get rid of the little circles beside the stats that makes it look like lists in the sidebar please?

    Montag, Oktober 29, 2007 at 16:03 | Permalink
  78. dodo wrote:

    Hi tanks for the plugin, I have same question
    I don’t wont the two dots near the text counter…
    is possible????
    http://www.simbiosislab.net/blogcina/
    sorry for my English..
    tanks

    Mittwoch, November 28, 2007 at 13:07 | Permalink
  79. i using this and its very good !
    thanks:)

    Samstag, Dezember 1, 2007 at 10:54 | Permalink
  80. Vince wrote:

    I installed your widget at my site “http://www.brusselspictures.com/” but it gives an error…

    Mittwoch, Dezember 5, 2007 at 23:51 | Permalink
  81. I got a problem with your widget it ain’t working with the latest Version 2.3.1 of wordpress. Will there be a fix soon ?

    Mittwoch, Dezember 5, 2007 at 23:53 | Permalink
  82. manele wrote:

    thx for the plugin.

    Dienstag, Dezember 11, 2007 at 14:58 | Permalink
  83. Nike SB wrote:

    Does this thing work with the new Wordpress 2.3.1… also Nice looking page u got here

    Samstag, Dezember 15, 2007 at 9:08 | Permalink
  84. lyann wrote:

    how do you change the little black things to something else?

    Montag, Dezember 24, 2007 at 11:16 | Permalink
  85. Vinnie wrote:

    [quote comment=""]I installed your Online Counter plugin

    at my site “http://asiatravelpictures.com” but I am not able to make it work. Does it have issues with the new WP version of some specific templates?[/quote]

    Samstag, Januar 5, 2008 at 11:38 | Permalink
  86. [quote comment=""]I installed your plugin and it’s working like a CHARM :-)

    at my site “http://www.HorsesDiaries.com”…[/quote]

    Mittwoch, Januar 9, 2008 at 1:21 | Permalink
  87. the plugin is great man.. thanks!!!

    Mittwoch, Januar 9, 2008 at 20:27 | Permalink
  88. [quote comment=""]I installed your online counter plugin in a jippy

    at my site “www.wonderfulpoetry.com” and it works like a CHARM!! [/quote]

    Mittwoch, Januar 9, 2008 at 23:23 | Permalink
  89. [quote comment=""]I installed your plugin thats an online counter

    at my site “WonderfulPoetry…”and it works like a CHARM THX![/quote]

    Mittwoch, Januar 9, 2008 at 23:55 | Permalink
  90. faruk dogan wrote:

    Ich habe es installiert, aber es funktionert nicht… Mysql version: 4.1.20…die Zahlen werden nicht angegeben…

    Samstag, Januar 26, 2008 at 19:46 | Permalink
  91. Manele Noi wrote:

    Great Post!!!

    Freitag, Februar 1, 2008 at 19:42 | Permalink
  92. Vinnnie wrote:

    [quote comment=""][...] LOVE IT! FANTASTIC CODING! KEEP IT UP MAN ![/quote]

    Sonntag, Februar 3, 2008 at 3:11 | Permalink
  93. thanks for this plugin.

    Sonntag, Februar 3, 2008 at 19:15 | Permalink
  94. Mattias wrote:

    Wont work on WP 2.3.3 :(

    Donnerstag, Februar 14, 2008 at 2:12 | Permalink
  95. ogre2000 wrote:

    Hello
    I have installed Your plugin on one of my sites and I have some errors during I am configuring site on wp-admin pages.
    Error appear:

    Warning: Cannot modify header information - headers already sent by (output started at /home/mateofhu/public_html/starbruk/wp-content/plugins/wp-onlinecounter.php:1) in /home/mateofhu/public_html/starbruk/wp-includes/pluggable.php on line 390

    What is wrong?
    Regards
    Marek

    Samstag, März 1, 2008 at 13:56 | Permalink
  96. bogdane wrote:

    [quote comment=""]I installed your plugin…

    at my site “Kaye’s Korner Blog”…[/quote] nice plugin , good job

    Donnerstag, März 6, 2008 at 22:13 | Permalink
  97. wrought iron wrote:

    [quote comment=""][...] WordPress.com Stats - Wordpress官方的统计插ä,需要Wordpress API Key。 WP OnlineCounter - 在线用户统计。 WP-SlimStat - [...][/quote]

    thans.

    http://www.cengizler.net
    http://www.ferforje.info
    http://www.kiminah.com

    Sonntag, März 9, 2008 at 15:54 | Permalink
  98. Bernd wrote:

    Hallo Jan,

    tolles Plug-In, kann man die Überschift “WP OnlineCounter” ändern, benutze das K2 theme, wenn ja, wo genau?

    Grüße

    Bernd

    Mittwoch, März 12, 2008 at 10:47 | Permalink
  99. hamachi wrote:

    [quote comment=""]I installed your plugin…

    at my site “Ankantoiel’s Diary”…[/quote]

    nice :)

    Samstag, April 5, 2008 at 11:25 | Permalink
  100. Why it wrote:

    [quote comment=""]I installed your plugin…

    at my site “Roberto Mezzaro”…[/quote]
    97ai

    Montag, April 7, 2008 at 20:03 | Permalink
  101. Hi,

    I installed your plugin + widget (my wordpress is 2.5) and everything seems fine and working, except that it remains 0 users online .. even though I am logged and for sure I know there are 3 different people - with different IPs logged on the site.

    Any help is much appreciated.

    Thanks

    Dienstag, April 8, 2008 at 1:08 | Permalink
  102. Gaf wrote:

    [quote comment=""]I installed your plugin…

    at my site “Poyrazca”…[/quote]

    thanks very good plugin.

    Mittwoch, April 9, 2008 at 10:22 | Permalink
  103. Gaf wrote:

    [quote comment=""]I installed your plugin…

    at my site “Poyrazca”…[/quote]

    thanks very good plugin.

    Mittwoch, April 9, 2008 at 10:22 | Permalink
  104. cesme wrote:

    Great comment thank you

    Mittwoch, April 9, 2008 at 16:23 | Permalink
  105. Poyraz wrote:

    [quote comment="12117"][quote comment=""]I installed your plugin…

    at my site “Poyrazca”…[/quote]

    thanks very good plugin.[/quote]

    ulem bu site benim ulem poyrazca benim :) yaw bu eklenti neden çalÄşmÄyor 2.5 da olmuştu tema deÄiştirdim çalÄşmÄyor

    Donnerstag, April 10, 2008 at 5:40 | Permalink
  106. chip oyun wrote:

    thnaks
    http://www.chipoyun.com

    Mittwoch, April 30, 2008 at 20:47 | Permalink
  107. exotic wrote:

    [quote comment=""][...] WordPress.com Stats - Wordpress官方的统计插ä,需要Wordpress API Key。 WP OnlineCounter - [...][/quote]

    Montag, Juni 2, 2008 at 23:04 | Permalink
  108. avsa wrote:

    Thanks for comment.

    Mittwoch, Juni 4, 2008 at 17:13 | Permalink
  109. exowyiglu sehwukx mfrszkqt aiwqrkedp kmwe cgrlaewz kyib

    Donnerstag, Juni 12, 2008 at 5:24 | Permalink
  110. kranny wrote:

    Plugin isnt workin…Even a single stat isnt appearing

    Sonntag, Juni 22, 2008 at 15:22 | Permalink
  111. NevaAVTO wrote:

    Thanks! very nice!

    Samstag, Juli 12, 2008 at 2:45 | Permalink