vb.org Archive

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

KiLLAxMAHN 09-16-2008 02:39 AM

i have 3.7.3 and i get a ERROR 404 - PAGE NOT FOUND

how do i fix this? this only happens to me when i click on one of the stats. help plz

Brother Malachi 09-16-2008 03:09 AM

Quote:

Originally Posted by RobbieZ (Post 1616481)
I had this problem too.. Let me check what i did to correct this.. !!

Can you help?

radekarc 09-17-2008 02:06 PM

I have installed Hide Hack Resurrection (by Psonic).
How to modify your query to run in the statistics of thanks?

Code:

if ($cybtopstats_enable_thx AND $vbulletin->options['post_thanks_on_off'])
                        {
                                if ($vbulletin->options['cybtopstats_timecut']>0)
                                {
                                        $get_stats_thanks = $vbulletin->db->query_read("
                                                SELECT SUM(post.post_thanks_amount) AS post_thanks_thanked_times, post.userid, user.usergroupid, user.displaygroupid, user.username, user.posts
                                                FROM " . TABLE_PREFIX . "post AS post
                                                LEFT JOIN " . TABLE_PREFIX . "user AS user ON (post.userid = user.userid)
                                                WHERE post_thanks_amount > '0' $cybexclgroups $cybtopstats_timecut_thx
                                                GROUP BY post.userid
                                                ORDER BY post_thanks_thanked_times DESC
                                                LIMIT 0, $resultsnr
                                        ");
                                }
                                else
                                {
                                        $get_stats_thanks = $vbulletin->db->query_read("
                                                SELECT userid, usergroupid, displaygroupid, username, posts, post_thanks_thanked_times
                                                FROM " . TABLE_PREFIX . "user AS user
                                                WHERE post_thanks_thanked_times > '0' $cybexclgroups
                                                ORDER BY post_thanks_thanked_times DESC
                                                LIMIT 0, $resultsnr
                                        ");
                                }
                                while ($getstats_thx = $db->fetch_array($get_stats_thanks))
                                {
                                        $getstats_thx[fullusername] = strip_tags($getstats_thx[username]);
                                        if ($trimusername > 0)
                                        {
                                                $getstats_thx[username] = fetch_trimmed_title($getstats_thx[fullusername], $trimusername);
                                        }
                                        else
                                        {
                                                $getstats_thx[username] = $getstats_thx[fullusername];
                                        }
                                        $getstats_thx[musername] = fetch_musername($getstats_thx);

                                        if ($vbulletin->options['cybtopstats_bold_remove'])
                                        {
                                                $getstats_thx[musername] = str_replace($cyb_afs_bpar, "", $getstats_thx[musername]);
                                        }
                                        eval('$cybtopstats_thanks .= "' . $vbulletin->templatecache['cyb_topstats_thanks'] . '";');
                                }
                        }


thewebhostingdi 09-18-2008 04:17 AM

While upgrading from 5.7 to 5.8.1 it is giving me this error ....

A conflict was detected in the bitfields. You cannot continue with the installation of this product until this has been fixed. The conflicts found were:
Bitfield Collision: credits_cantearn = prefixrequired

emath 09-18-2008 08:38 AM

how\where can i translate this plugin (after i installed it..)?
tnx ..

Makc666 09-18-2008 09:47 AM

Quote:

Originally Posted by Makc666 (Post 1622526)
I see a "bug" as I think.

Clean vBulletin 3.7.3 + Cyb - Advanced Forum Statistics Version: 5.8.1

If debug is enabled I see this one in "Messages:".

Code:

(unspecified) fetch_permissions(1, 1, 6,''); -> cached fperms for forum 1
(unspecified) fetch_permissions(2, 1, 6,''); -> cached fperms for forum 2
(unspecified) fetch_permissions(3, 1, 6,''); -> cached fperms for forum 3
(unspecified) fetch_permissions(4, 1, 6,''); -> cached fperms for forum 4

returning default icon
returning default icon
returning default icon
returning default icon
php_sapi_name(): apache


Found. This is because of vBulletin "strange" code in file:
./includes/functions.php

PHP Code:

    // ########## #DEBUG# CODE ##############
    
$DEBUG_MESSAGE iif(isset($GLOBALS['_permsgetter_']), "($GLOBALS[_permsgetter_])"'(unspecified)'). " fetch_permissions($forumid$userid$usergroupid,'$parentlist'); ";
    unset(
$GLOBALS['_permsgetter_']);
    
// ########## END #DEBUG# CODE ############## 

Throw a note to Dev.Team http://www.vbulletin.com/forum/proje...?issueid=26369

Datenpapst 09-19-2008 11:07 AM

is there a possibility to get this hack on the vBadvanced portal page?

mmoore5553 09-19-2008 06:55 PM

anyone figure out the IE huge gap error ? i tried earlier fix and it didnt work ..in FF3 everything looks fine but IE there is huge gap with headings and first post .... PM me with info .... i am just looking for newest posts mod and hottest mod ...anything better ?

HemoOo Nana 09-21-2008 05:41 PM

Thanks

emath 09-25-2008 03:32 PM

can u add to this mode a code so it will appead on the left\right side of the board ?

ShiZoPhreN 09-25-2008 10:15 PM

Hello Cyb,

I dont know, this Guy have permission use your code but, thats a nice feature for the Future :)

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

auctionguy 09-26-2008 12:17 PM

I love the stats but when you look at the Google Cached Version of www.devhunters.com the Top Header for the Stats like repeats 25 times. I am running 3.7.3 PL1

Is there something I can change in the code to fix this?

Is there a thread I am missing about it here somewhere?

zombietom 09-27-2008 03:31 AM

Hey, i have installed this Great Mod.
I have a couple of small issues
1. the stats show up twice on 1 of my many themes -Where do i look to fix it?
2. Can i adjust the size of the overall stat box? If runs off on a couple of my themes?

thanks!

maxie 09-28-2008 11:00 AM

not work with me

when i click any links it shows

Not Found

The requested URL was not found on this server.

any help for this ?

Lee Roberts 09-28-2008 09:30 PM

Hi, i dont know if others would like this for the next update but would it be posable to add the stats to the bottom of the defult stats we get with vb?

I'v poped a screen shot of what i mean, has anyone done this already, could some one please tell me what i would need to do/edit to have it show as per my screen shot please.

https://vborg.vbsupport.ru/external/2008/09/5.jpg

Cheers,
Lee

dnicu26 09-28-2008 09:35 PM

Can you tell me what I'd need to edit to add a "nofollow" attribute to the links to people's profiles that appear under top poster, etc. ?

forsanelhaq 09-29-2008 01:00 AM

thanks sir its good

Hamednet 09-29-2008 09:41 AM

thanks dear

very nice !

MarkoP 09-29-2008 11:32 PM

Is there a way to edit this mod so I can add another section called "The Latest Auctions" or whatever?

Like the "Latest Classifieds" but it would say Latest Auctions or whatever I wanted it to say...

Thanks!

parabat 09-30-2008 12:15 AM

This is an awesome mod, so thank you for this. :up:

I have a question which I hope some one can help me with. I have a wordpress blog on my site which I would like to get feeds from and into the "blogs stats" area of this mod. Is that at all possible?
I am using the wordpress bridge and it woks well for the usernames etc.

Any help would be greatly appreciated.

-PB

northwallace 09-30-2008 03:22 PM

I just went and deleted the last '/' from the end of my url. in vbulletin options. The links now work.

Masiello 10-01-2008 04:07 PM

Hi, I'm using custom style and need to be showing the enable stats link, if I use
Quote:

$cybts_enablelink
instead don't get it working and Have tried the code below, but same result, not working, where do I get wrong?
PHP Code:

<if condition="$show['cybts_enablelink']"><tr><td class="vbmenu_option"><a href="misc.php?do=enablestats$session[sessionurl_q]">$vbphrase[cyb_topstats_disabled_note]</a></td></tr></if> 

I've tried too this
PHP Code:

<tr><td class="thead">$vbphrase[cyb_afs_turnon_stats]</td></tr>
        <if 
condition="$show['cybts_enablelink']"><tr><td class="vbmenu_option"><a href="misc.php?do=enablestats$session[sessionurl_q]rel="nofollow">$vbphrase[cyb_topstats_disabled_note]</a></td></tr></if> 

My style have quick links in the navbar template

kentona 10-02-2008 03:07 AM

Hi, i've got everything working with it except the latest forum news. It shows nothing. Could you tell me how i can fix this to show the latest forum news. Thanks.

Shazz 10-02-2008 03:19 AM

Quote:

Originally Posted by kentona (Post 1635297)
Hi, i've got everything working with it except the latest forum news. It shows nothing. Could you tell me how i can fix this to show the latest forum news. Thanks.

Have you double checked your settings for the correct forum ID?

kentona 10-02-2008 03:21 AM

no i haven't. How do i do that?

Shazz 10-02-2008 03:51 AM

Quote:

Originally Posted by kentona (Post 1635306)
no i haven't. How do i do that?

Admincp > vBoptions > Cyb Advanced forum stats.

kentona 10-02-2008 04:08 AM

thanks it works now.

Shazz 10-02-2008 04:09 AM

Quote:

Originally Posted by kentona (Post 1635322)
thanks it works now.

Always check vBOptions when installing mods :)
Glad you got it

nasleaftab 10-03-2008 03:51 PM

Dear All friends,

I am happy that my first post is here in this great thread.

Thank you for this hack, it is perfect.

But I have a problem,

I cannot show it in my forum :( How can I do it? I am using Enlighten template.

Please tell me how I can use this great hack?

Please help me,

Thanks and waiting for your helps.

AdrianH 10-03-2008 04:26 PM

Quote:

Originally Posted by nasleaftab (Post 1636552)
Dear All friends,

I am happy that my first post is here in this great thread.

Thank you for this hack, it is perfect.

But I have a problem,

I cannot show it in my forum :( How can I do it? I am using Enlighten template.

Please tell me how I can use this great hack?

Please help me,

Thanks and waiting for your helps.


Installation:
1. Required:
Import XML file (as product) through AdminCP: Plugin System > Manage Products > [Add/Import Product]

2. Optional - if you use custom styles and stats are not shown:
Open FORUMHOME template and add "$cybtopstats" where you wish Stats box to appear


3. Optional - if you use custom styles and link to re-enable stats is not shown:
Open desired template and add "$cybts_enablelink" where you wish "Enable Top Statistics" link to appear

nasleaftab 10-04-2008 11:08 AM

Thanks.

it works now :)

deki5la 10-08-2008 03:18 AM

Thanks, this hack is perfect.

soniceffect 10-11-2008 03:42 PM

Any chance we could have a 'Top poster in last week/month'? Or is it something that I could easlily add?

NathanLedet 10-12-2008 12:09 AM

I don't see anyone else having this problem...but this add on was a server hog whenever i enabled it. 45 people online and it maxed out my CPU (dual core). When i disable it, everything returns to normal....anyone else experience something similar?

Shazz 10-12-2008 12:32 AM

Quote:

Originally Posted by NathanLedet (Post 1643004)
I don't see anyone else having this problem...but this add on was a server hog whenever i enabled it. 45 people online and it maxed out my CPU (dual core). When i disable it, everything returns to normal....anyone else experience something similar?

About everyone with a big forum

soniceffect 10-12-2008 11:51 AM

Quote:

Originally Posted by soniceffect (Post 1642762)
Any chance we could have a 'Top poster in last week/month'? Or is it something that I could easlily add?

Please ignore that stupid question LOL ....

Would be nice if we could have both with timecut and without timecut showing however :)

ozankar 10-12-2008 03:08 PM

hi,

I want to see more statics on seperate page but when I select for example 30 it gives an error:

Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

How can I solve that problem.

thanks.

erdiyilmaz 10-12-2008 03:20 PM

yes, i'm aLso taking this error.. when i want to show more statistics, 5,10,20,30 choose and cLick update button and then this error is coming.

is there any one can soLve that probLem?

Code:

Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.


qbn720 10-14-2008 12:23 AM

Is it possible to display this hack on custom pages that we have coded out using vB-Advanced CMS?

jani 10-15-2008 08:45 AM

Can you please tell me how can I remove the "Latest Forum News" and "Newest Members" from the Top 5 stats?


All times are GMT. The time now is 01:22 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.02001 seconds
  • Memory Usage 1,850KB
  • 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
  • (3)bbcode_code_printable
  • (3)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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