1 (edited by KeyDog 2010-09-07 08:51)

Topic: [release] Impoved online list

Hello

This extension let you to improve your online list. It let you to:

  • display users online today / last day (24h)

  • display users online this week / last week (7 days)

  • display list of guest hosts (for admins and moderators only)

  • mask some hosts in guest list

  • configure all options in admin panel

Improved online list
http://img21.imageshack.us/img21/292/onldh9.jpg

Configuration panel
http://img3.imageshack.us/img3/6591/onl.jpg


It's working with all timezones.
I mean, it should wink I was testing it with all possible scenarios.


Version 1.0
online_plus_1.0.zip


Version 1.1
-Added option to show/hide today/week online list for guests
online_plus_1.1.zip

Version 1.2
-Fixed bug with displaying today/week when there is no users online.
online_plus_1.2.zip

Version 1.3
-Added option for sorting today/week list.
online_plus_1.3.zip

[KeyDog - 07-09-2010]
Version 1.3.7
-Added KeyDog fix of code not ending in php mode in first hook
Download Mirror 1 | Download Mirror 2 | Download Mirror 3 

YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.

Re: [release] Impoved online list

very cool! thx

Re: [release] Impoved online list

Nice I'm using this now.

Re: [release] Impoved online list

Nice one indeed, using it also now -> http://resistance.pewpew.nl/forums/

Thanks YonasH!

5

Re: [release] Impoved online list

The best! thanks

Re: [release] Impoved online list

installed and loving it smile
thanks!

Re: [release] Impoved online list

very cool! thanks!

Re: [release] Impoved online list

thanks

9 (edited by fantasma 2009-02-09 14:07)

Re: [release] Impoved online list

Hello it work correctly but i not able to change language after that i have upload the new language files.

Re: [release] Impoved online list

Can you add "display guest online today" smile
Display it in number/amount not the ip or host

11 (edited by YonasH 2009-02-09 14:36)

Re: [release] Impoved online list

fantasma wrote:

Hello it work correctly but i not able to change language after that i have upload the new language files.

I'll check it when I'll back at home, but it should be OK.

anggiawan wrote:

Can you add "display guest online today"
Display it in number/amount not the ip or host

No - there is no table for guests. It will need new table.


I'm planning to make some statistics ext in future wink It'll include it.

YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.

Re: [release] Impoved online list

Awesome extension YonasH! Thank you!

13

Re: [release] Impoved online list

YonasH wrote:

No - there is no table for guests. It will need new table.

Not table, use cache file

Re: [release] Impoved online list

YonasH, thank you for the extention but there is no functions like:
1. Guests can't see who was online today.
2. How can administrator set the mask for the range of IP adresses, for example: 10.15. - 10.20. = Unknown.
3. How to make the extention recognize IP adress wich is not in the list of IP adresses as "unknown", for example: *.*. = Unknown.

15 (edited by YonasH 2009-02-10 19:36)

Re: [release] Impoved online list

padizar wrote:

1. Guests can't see who was online today.

It was my purpose. I can add an option in next release.

padizar wrote:

2. How can administrator set the mask for the range of IP adresses, for example: 10.15. - 10.20. = Unknown.

10.15.
10.16.
... wink
You can't set range even in bans. I don't have idea right now how to do this.

padizar wrote:

3. How to make the extention recognize IP adress wich is not in the list of IP adresses as "unknown", for example: *.*. = Unknown.

I don't see any reason to mask all IP's. All unmasked are unknown wink But if you really want to do this, change manifest.xml. After line 116:

    $currhost = $forum_user_online['ident'];

add:

    $forum_user_online['ident'] = 'Unknown';
YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.

16 (edited by Programming-Designs 2009-02-10 21:28)

Re: [release] Impoved online list

Suggestion: It'd be cool if there was an option to allow non-admins/guests to see masked IP addresses (such as bots that are defined by ips/sub nets).

Also as suggested, it'd be nice to have the option to allow guests to see who is online/not.

Great extension btw smile

17

Re: [release] Impoved online list

wow, big thx, installed it

Re: [release] Impoved online list

It works perfectly for me and all disappearing problems in the original are gone. Many thanks. smile

19

Re: [release] Impoved online list

padizar wrote:

1. Guests can't see who was online today.

done smile

new version in first post


YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.

20 (edited by padizar 2009-02-19 15:31)

Re: [release] Impoved online list

Much thanks. smile

When nobody is online the line with the list of users who visited the forum that day ("Online today") moves to the upper line ("Users online"). How to fix it?

21

Re: [release] Impoved online list

padizar wrote:

Much thanks. smile

When nobody is online the line with the list of users who visited the forum that day ("Online today") moves to the upper line ("Users online"). How to fix it?

Oh jeah! I forgot about it. In previous version always somebody was online (only logged in could see it).
Simple fix - it'll be ready in few hours, when I'll find some time wink

YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.

22

Re: [release] Impoved online list

padizar wrote:

Much thanks. smile

When nobody is online the line with the list of users who visited the forum that day ("Online today") moves to the upper line ("Users online"). How to fix it?

Fixed smile
See first post.

YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.

Re: [release] Impoved online list

One another question smile
The names of users who visited the forum today is sorted by ABC. How to sort the names of users by the time of visit?

Re: [release] Impoved online list

Time order could give some problems, I believe. Users are in different time zones, and some users visit a site more than once a day (which of the visits counts?). And what if someone looks on the site at 2359, but does his last action on 0003. Does he count as last visitor from day one or as the first visitor of day two or both (but remember: it was actually only one visit)?

25

Re: [release] Impoved online list

Sorting by last visit will be simple. I can prepare next version with this option.

@maststef - Time zones doesn't matters. It'll use only last visit time. Anyway users appear on today/week list after they leave forum (because then their lastvisit mark updates itself)

YonasH's repository + Extensions Directory = PunBB Extensions Online Library (in progress....)

Away. I will be back soon.