vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Members who have visited the forum (Today or last 24 hours). (https://vborg.vbsupport.ru/showthread.php?t=82769)

lawahdy 10-16-2005 10:36 PM

Quote:

Originally Posted by Paul M
PM me an admin account and I'll check it for you.

i did... please post the solution here so i would know where did i go wrong..

yeah.. you can tell i love to learn..

and also i like not bothering everyone.

thanks in advance..

Paul M 10-17-2005 03:19 AM

Your forum is set to use one style (vbPortal Demo) but you had not edited the FORUMHOME template in this style, only the default style. Fixed. :)

teamelusive 10-17-2005 06:55 PM

worked great! thanks ;)

trackpads 10-18-2005 08:54 PM

Works awsome but is there a way to cut it off at a certain number or make it scroll? Please see the screenshot for what I am referring to.

Thanks again paul for all of the great hacks, I think I have installed every single one of yours :)

-Jason

Paul M 10-18-2005 09:19 PM

It can be made to be collapsed when the page loads, so you have to manually expand it to see the list.

trackpads 10-18-2005 09:38 PM

Ah, ok, thanks!

lawahdy 10-18-2005 10:30 PM

Quote:

Originally Posted by Paul M
It can be made to be collapsed when the page loads, so you have to manually expand it to see the list.

and how is that done..?

if i may ask..

thanks

Madmp3zz 10-19-2005 01:09 AM

Great Hack....

Thanx

Paul M 10-19-2005 10:15 AM

Quote:

Originally Posted by lawahdy
and how is that done..?

if i may ask..

thanks

In the template code find ;

Code:

<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayusers')"><img id="collapseimg_forumhome_todayusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_todayusers].gif" alt="" border="0" /></a>
replace with ;

Code:

<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayusers')"><img id="collapseimg_forumhome_todayusers" src="$stylevar[imgdir_button]/collapse_thead_collapsed.gif" alt="" border="0" /></a>
also find ;

Code:

<tbody id="collapseobj_forumhome_todayusers" style="$vbcollapse[collapseobj_forumhome_todayusers]">
and replace with ;

Code:

<tbody id="collapseobj_forumhome_todayusers" style="display:none;">

lawahdy 10-19-2005 11:02 PM

Quote:

Originally Posted by Paul M
In the template code find ;

Code:

<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayusers')"><img id="collapseimg_forumhome_todayusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_todayusers].gif" alt="" border="0" /></a>
replace with ;

Code:

<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayusers')"><img id="collapseimg_forumhome_todayusers" src="$stylevar[imgdir_button]/collapse_thead_collapsed.gif" alt="" border="0" /></a>
also find ;

Code:

<tbody id="collapseobj_forumhome_todayusers" style="$vbcollapse[collapseobj_forumhome_todayusers]">
and replace with ;

Code:

<tbody id="collapseobj_forumhome_todayusers" style="display:none;">


all done.. thanks ..

everything works fine.

Xeonext 10-20-2005 08:29 AM

Just installed it on my forums :)

PuntoPower 10-20-2005 01:41 PM

installed

is there anyway it can store and display the highest number of users on in a day?

thx

trackpads 10-20-2005 02:05 PM

Quote:

Originally Posted by PuntoPower
installed

is there anyway it can store and display the highest number of users on in a day?

thx

Vb already does this by default in your Admincp > Statistics > Active Users. Not sure if there is a public one though.

PuntoPower 10-20-2005 04:07 PM

Quote:

Originally Posted by trackpads
Vb already does this by default in your Admincp > Statistics > Active Users. Not sure if there is a public one though.

what variable is it? as in can i pull it from the database and display it on the forum?

Paul M 10-20-2005 05:49 PM

Quote:

Originally Posted by PuntoPower
installed

is there anyway it can store and display the highest number of users on in a day?

thx

Users or members ? (users includes guests).

PuntoPower 10-20-2005 06:51 PM

Quote:

Originally Posted by Paul M
Users or members ? (users includes guests).


members

Paul M 10-20-2005 07:20 PM

Quote:

Originally Posted by PuntoPower
members

Then it's your lucky day - I just updated this to 3.5 today. :)

https://vborg.vbsupport.ru/showthread.php?t=98887

Snake 10-20-2005 09:54 PM

OK I've updated to the newest version but err where are the settings located at so I can edit them? :\

Paul M 10-20-2005 10:10 PM

See Post 269

SnowBot 10-21-2005 07:38 AM

Installed and working great :) TOP work mate

microzott 10-21-2005 09:53 AM

thanks paul for the new hack :D

Ramsesx 10-21-2005 10:08 AM

Very nice Paul, thank you very much.
Only one question, is it possible to integrate this in any way into a vbadvanced cmps module?
It is following module:

HTML Code:

<tr>
<td class="thead"><span class="smallfont"><phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase></span></td>
        </tr>
        <tr>
                <td class="$altbgclass"><span class="smallfont">$activeusers</span></td>
        </tr>

        <tr>
                <td class="$bgclass"><span class="smallfont"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></span></td>
</tr>

Thank you

Paul M 10-21-2005 03:14 PM

I'm sure it is, but not by me, I don't have vbadvanced.

I'm sure someone can tell you how, or try the vbadvanced support forum. :)

scottblumin 10-21-2005 11:24 PM

working great - thanks.

TosaInu 10-22-2005 07:05 PM

Great hack.

The number displayed in the hack 24 hours, differs quite a bit from ACP/Users/List Visitors in The last 24 hours (displays only registered users too?). Does the hack only list the posters?

Paul M 10-22-2005 08:33 PM

Quote:

Originally Posted by TosaInu
Great hack.

The number displayed in the hack 24 hours, differs quite a bit from ACP/Users/List Visitors in The last 24 hours (displays only registered users too?). Does the hack only list the posters?

No, visitors - there is a seperate posters hack.

Xajel 10-22-2005 08:40 PM

Just clicked Install :)

Thanks Paul, very usefull plugin.. just to note you I've made some little mod for my forum... some pharse change/add for Arabic Language and change the picture to 'images/statusicon/forum_link.gif'

Thanks again, you deserve more than that just a ( Install ) click ;)

TosaInu 10-22-2005 08:59 PM

Quote:

Originally Posted by Paul M
No, visitors - there is a seperate posters hack.

How comes it differs so much from the ACP then? Starts to get uneasy.. :) erm.. never mind.

Great hack.. hacks.. both of them :)

jozo1 10-23-2005 03:12 PM

done, working but display twice the same ??

BillAlpha 10-23-2005 04:16 PM

Installed and works great with Firefox, but for some reason it's only showing up in Internet Explorer to unregistered/ logged out users. Any idea what I need to do to resolve this for IE?

Cheers,

Bill :)

Ncturnal 10-23-2005 04:54 PM

Is the default style for unregistered users possibly different from the one for registered users?

Ncturnal 10-23-2005 05:03 PM

Quote:

Originally Posted by BillAlpha
Installed and works great with Firefox, but for some reason it's only showing up in Internet Explorer to unregistered/ logged out users. Any idea what I need to do to resolve this for IE?

Cheers,

Bill :)

I just checked it out and it's working with IE. Maybe try clearing your IE cache.

Paul M 10-23-2005 05:59 PM

Quote:

Originally Posted by jozo1
done, working but display twice the same ??

Um, huh ?

Quote:

Originally Posted by BillAlpha
Installed and works great with Firefox, but for some reason it's only showing up in Internet Explorer to unregistered/ logged out users. Any idea what I need to do to resolve this for IE?

There is nothing browser specific in it.

This looks a good bet ;

Quote:

Originally Posted by Ncturnal
Is the default style for unregistered users possibly different from the one for registered users?


BillAlpha 10-23-2005 07:33 PM

Thanks for checking it out Ncturnal. I've cleared the cache in IE, logged out and back in again but it still does not appear in IE (version 6 on XP SP2) once logged in. But if it can be seen by you then I'm at a loss! I've got another forum member checking it too as they had the same problem.

There is only one style so I can rule that out too :rolleyes:

Quote:

Originally Posted by jozo1
done, working but display twice the same ??

Would pasting the code into the forumhome template twice cause this?

Bill :)

steven s 10-23-2005 07:42 PM

Quote:

Originally Posted by BillAlpha
Would pasting the code into the forumhome template twice cause this?

Yes it would as it did with me. I upgraded the plugin and forgot to remove the old edits. I got so fouled up that I ended up reverting the FORUMHOME template and started all over. Now everything is good.

athoob 10-24-2005 12:13 PM

THank you .. Installed :D

Paul M 10-24-2005 05:36 PM

Version 4.10 uploaded.

This version removes the need to edit the FORUMHOME template.

To upgrade from version 3.xx to version 4.10 you need to delete the existing plugin and remove the template code in FORUMHOME - then upload the new product. To upgrade from version 4.xx to version 4.10 you need to uninstall the product and remove the template code in FORUMHOME - then upload the new product.

* An add-on to display a 'Most ever posters' count is also available here.

Citizen 10-24-2005 06:11 PM

Is this a vital upgrade?

Paul M 10-24-2005 06:14 PM

Quote:

Originally Posted by Citizen
Is this a vital upgrade?

No, if you are happy with your current version there is no need to upgrade. It has, in fact, been updated quite a few times - only rarely do I issue update notices, just in case people wish to keep up to date. :)

dano 10-24-2005 10:38 PM

Installed and works perfect


All times are GMT. The time now is 07:45 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01958 seconds
  • Memory Usage 1,833KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code_printable
  • (1)bbcode_html_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete