vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Statistics Modifications - Cyb - Advanced Forum Statistics (https://vborg.vbsupport.ru/showthread.php?t=122986)

GrendelKhan{TSU 04-25-2007 11:22 AM

GREAT HACK..LOOOOOOOOOVE the double rows!!!
could never get all the stats on I wanted. that solves that!:D

however....

Quote:

Originally Posted by P.Jackson (Post 1045125)
hmm i disable the plugin and it doesnt show atall. then i enable it i have 2 boxes any ideas?

I have teh same problem. I think its a bug cause...

read me says:
Quote:

To move Top Stats box somewhere else on forumhome: 1.-Set placement setting to "None" 2.-Add "$cybtopstats" wherever you wish in FORUMHOME template.
but there is no "none" options for placement, only "disable". but as said, if you disable it ...well..its disabled.

and if add "$cybtopstats" anywhere it doesn't "take".


please add "NONE" to placement option so I can place this somewhere else on my forumhome without getting two topstats!! :)

Spika 04-25-2007 02:57 PM

Quote:

Originally Posted by Zagis (Post 1191751)
It doesn't show date and time when I use it in my language

I Have found the problem:

In Admin CP go to Language Manager.
Edit your language, look for Date Format and Time Format, I change both with this parameters:

Date format: %d-%b-%Y
Time Format: %H:%M

In Spanish works fine, If you want to change to your format language try this link:
http://es.php.net/manual/en/function.strftime.php

dbirosel 04-25-2007 04:42 PM

How can i do this?

Exactly like Latest Forum News, but have an addition for another forum. I have a classified section on the forum, and i want the members to be updated on what's new for sale. :) :)

voter 04-27-2007 02:45 PM

Quote:

Originally Posted by voter (Post 1231161)
Seem Cyb - Advanced Forum Statistics - UT is not working properly in my Forum.
I execute the query wroten there "by hand" and the number of threads are now correct.

Cyb where is the definition, how oft must this cron script run?

I solve the problem by extracting the plugin Cyb - Advanced Forum Statistics - UT and making from it a php file, than I let it fire as a cron job once an hour as a Scheduled Task.

There is still one small problem, the number of thread are always one more than the user in realy have.

arco 04-27-2007 03:03 PM

Excellent mod!

Have only one problem - Top Thread Starters doesn't seem to update. :confused:
Any way to fix that?

itsblack 04-28-2007 12:48 AM

I hope that in the future version can add user access control for the newest posts display. Now the people can see the thread titles that they not supposed to see.

arco 04-28-2007 01:58 AM

Quote:

Originally Posted by itsblack (Post 1236783)
I hope that in the future version can add user access control for the newest posts display. Now the people can see the thread titles that they not supposed to see.

Really? That doesn't happen here so it's most probably your permission settings.

dbirosel 04-28-2007 04:14 AM

Still awaiting a response for having the Last posts to the left side...

rayw 04-28-2007 05:32 AM

Quote:

Originally Posted by itsblack (Post 1236783)
I hope that in the future version can add user access control for the newest posts display. Now the people can see the thread titles that they not supposed to see.

Quote:

Originally Posted by arco (Post 1236803)
Really? That doesn't happen here so it's most probably your permission settings.

Doesn't happen to me either. I would agree in that you should check your permissions.

MP1 04-28-2007 05:46 AM

This is great. Thanks!

arco 04-28-2007 03:11 PM

Quote:

Originally Posted by arco (Post 1236472)
Have only one problem - Top Thread Starters doesn't seem to update. :confused:
Any way to fix that?

Quote:

Originally Posted by voter (Post 1236459)
I solve the problem by extracting the plugin Cyb - Advanced Forum Statistics - UT and making from it a php file, than I let it fire as a cron job once an hour as a Scheduled Task.

Thanks voter, your post pointed me in the right direction. :)
I temporarily fixed the problem by extracting that code from the plugin.

Find in includes/cron/cleanup.php
Code:

($hook = vBulletinHook::fetch_hook('cron_script_cleanup')) ? eval($hook) : false;
Add before
Code:

while ($thread = $vbulletin->db->fetch_array($threads))
{
    $thread['open'] = 10;
    $threadman =& datamanager_init('Thread', $vbulletin, ERRTYPE_SILENT, 'threadpost');
    $threadman->set_existing($thread);
    $threadman->delete(false, true, NULL, false);
    unset($threadman);
}

Now "Top Thread Starters" will get updated every hour.

itsblack 04-28-2007 06:41 PM

Quote:

Originally Posted by arco (Post 1236803)
Really? That doesn't happen here so it's most probably your permission settings.

Quote:

Originally Posted by rayw (Post 1236854)
Doesn't happen to me either. I would agree in that you should check your permissions.

That's weird. I don't know if I've expressed myself clearly. I mean, e.g., the normal user should not see the threads from private forums, but the authorised users should able to see them. Just like the vba_cmps did. But now the vba_cmps page works has no problem, but at this mod I don't see this effect -- except I disable the usergroup or forumid in this mod -- but that's not what I want.

For the vba_cmps works correctly, so I don't know where else I can set the wrong permission settings. At the forum display the unauthorised usergroups also can only see that those forums marked as "private". I've checked it again. In forum permission setting I've disabled those usergroups at all, anywhere else I should check?

Thank you in advance.

arco 04-28-2007 07:18 PM

That's odd. You have the latest version of this mod installed?
Go to Forum Manager, and then select View Permissions for the forums you want to hide. Edit the usergroups that you don't want to have access and set all options to No.
Also make sure the users are not members of another usergroup that do have access to those forums.

itsblack 04-28-2007 08:47 PM

Quote:

Originally Posted by arco (Post 1237204)
That's odd. You have the latest version of this mod installed?
Go to Forum Manager, and then select View Permissions for the forums you want to hide. Edit the usergroups that you don't want to have access and set all options to No.
Also make sure the users are not members of another usergroup that do have access to those forums.

Yes, I did installed the latest version.

I've followed your instruction did the permission setting again, but it has no effect.

I use the guest account to test the display effect, so I'm sure that it has nothing to do with "members of another usergroup". If the user permisson has any problem, then they should see the private forum on the forum display page. But they don't, so I thought maybe there's nothing wrong with the permission setting. I'm confused...

arco 04-28-2007 09:48 PM

Yes, if your guest account doesn't see private forums on forum home, the permissions should be ok. Then this mod shouldn't list posts from them either. Have you tried uninstalling the mod and installing it again? If that doesn't help I'm out of suggestions. :(

itsblack 04-28-2007 11:05 PM

Quote:

Originally Posted by arco (Post 1237265)
Yes, if your guest account doesn't see private forums on forum home, the permissions should be ok. Then this mod shouldn't list posts from them either. Have you tried uninstalling the mod and installing it again? If that doesn't help I'm out of suggestions. :(

Yes, I also have tried uninstalling and reinstalling... but, still useless
anyway, thank you for your help.

N-0p3rz 04-29-2007 06:21 AM

So will this ever be edited to work in 3.5.X

d3v1L 04-29-2007 06:27 AM

*upgraded*

rayw 04-29-2007 07:07 AM

Anyone else having this problem (see attached image). Seems to only occur in IE7.

Almost everything is underlined in orange (same style I gave my links) when I hover the mouse anywhere over the top stats heading or below.

ForYou 04-29-2007 08:02 AM

Hello ,

I was Update the hack put i can't see any thing in forumHome , But before in the old hack it was show easy in forum home without any edit ,

Please Help ,

Regards

blueberry 04-29-2007 10:36 AM

great mod.. thanks alot.. working great!!

trbznl 04-29-2007 11:36 AM

Top thanked cant work for me. Can you think something why it isnt working...??

arco 04-29-2007 02:51 PM

Quote:

Originally Posted by rayw (Post 1237451)
Anyone else having this problem (see attached image). Seems to only occur in IE7.

Nope, it looks the same here in both Firefox and IE7.

Valter 04-29-2007 05:31 PM

v5.2 - Apr 29. 2007.
-Fixed bug where thread counts in "Top Thread Starters" are not updated
-Fixed bug with strange underlines on some forums
-Fixed bug where you can not put stats on custom place on forumhome
-Updated instructions on how to put Stats on custom place on forumhome
-Improved exclusion of no-permissions-to-view and private forums from stats
-Added option to move "Latest Posts" to the left in Stats box

To upgrade: Import XML, allow overwrite.
Revert hack templates if any modified.

Distance 04-29-2007 05:32 PM

Thanks.. Whuay first download!

Shazz 04-29-2007 05:45 PM

Thanx for the update cyb :D

projectego 04-29-2007 05:46 PM

Thanks for this latest update, Cyb. ;)

G_Man 04-29-2007 06:15 PM

Hey Cyb - As much as I LOVE this mod I have not updated since you dropped the monthly stats. Any chance you could bring that back as a separate Mod ?? It took no performance hits that I could tell running it and my members and I love it. I actually give out awards to the most viewed threads and most Repped members at the end of each month.

Just a thought. Keep up the fantastic work.

itsblack 04-29-2007 06:27 PM

Well, with the newest version now everything goes smoothly. Thank you Cyber. :)

Aclikyano 04-29-2007 06:42 PM

CYB.. I gotta encourage u to keep doing your THING with this and other codes u make!!.

Alot of coders now are losing patience and quitting it seems like..

SO BE ENCOURAGED and Our FORUM LOVES this STAT BOX (especially the upgrades and fixes you made) !!

THANKS ! :)

Andyucs 04-29-2007 08:34 PM

Quote:

Originally Posted by Aclikyano (Post 1237733)
CYB.. I gotta encourage u to keep doing your THING with this and other codes u make!!.

Alot of coders now are losing patience and quitting it seems like..

SO BE ENCOURAGED and Our FORUM LOVES this STAT BOX (especially the upgrades and fixes you made) !!

THANKS ! :)

also i second that your work is so easy to use on a forum upgrade after template changes you just reinstall yours , not had to alter a template yet

hats off to you m8ty

arco 04-29-2007 08:43 PM

I'll second that too. Keep up the good work Cyb! :)

dbirosel 04-29-2007 09:02 PM

x578791513!!!!! Cyb for "Coder of the Year"!!! lol. Cyb does some amazing stuff with vB. I also love the fact that he reads our suggestions and implement them to the mod. Great coder all around!! woot!

dbirosel 04-29-2007 09:07 PM

Suggestion: Latest Classified Ads

Choosing the specific sections through forum id that will show up.

Example: Latest News

Mrdby 04-29-2007 09:07 PM

updated!!!

MeMySelfNi 04-29-2007 09:48 PM

*updated*

sinanmoda 04-29-2007 10:14 PM

Thanx but "Top Thread Starters" are not updated in 5.2 too.

rayw 04-29-2007 10:29 PM

Quote:

Originally Posted by arco (Post 1237614)
Nope, it looks the same here in both Firefox and IE7.

Quote:

v5.2 - Apr 29. 2007.
-Fixed bug where thread counts in "Top Thread Starters" are not updated
-Fixed bug with strange underlines on some forums
-Fixed bug where you can not put stats on custom place on forumhome
-Updated instructions on how to put Stats on custom place on forumhome
-Improved exclusion of no-permissions-to-view and private forums from stats
-Added option to move "Latest Posts" to the left in Stats box
This latest update has fixed my problem (in bold above). Fantastic work as usual.

Thanks a lot. :)

CoorsLightGuy 04-30-2007 01:13 AM

Terrific Hack! I only installed version 5.1 a couple of days ago, but went ahead and downloaded v5.2 and installed it. Everything looks good thus far. Keep up the good work.

d3v1L 04-30-2007 06:24 AM

I get this vbulletin message in my admin control panel home after installing 5.2

" Out-of-Date Custom Templates Found!
There are currently 1 customized template(s) that need to be updated or reverted. Some sections of vBulletin may not function if you do not do this! "

It is asking me to revert to v 4.8 of this hack :rolleyes:


All times are GMT. The time now is 02:42 AM.

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.02556 seconds
  • Memory Usage 1,834KB
  • 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
  • (2)bbcode_code_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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