Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Update 4.0.4a - [AJAX] - Advanced Forum Statistics Details »»
Update 4.0.4a - [AJAX] - Advanced Forum Statistics
Version: 4.0.4a, by haothiencz haothiencz is offline
Developer Last Online: Oct 2021 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.0.x Rating:
Released: 01-10-2010 Last Update: 03-04-2010 Installs: 576
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations  
No support by the author.

AJAX - Advanced Forum Statisticss

+Compatiable with latest version of vBulletin
+ This Mod has been coded by one person in our Team Linhnt
+ You can also check 3.8.x version here posted by ry215
+ This Mod is supported so I will try my best to give most possible support to you guys here.
+ Enjoy it!

DEMO: view screenshot
LIVE DEMO: my site is currently under construction so feel free to leave a link to your site if you use it. I will put it here.

Features:

Thread, blog, forum:
- Latest Post
- 9 Latest Post custom
- Hostest thread
- Most viewed thread
- Latest News
- Top Forum
- Latest Class Ads
- Latest Blog (Entry)
- Latest Blog Comment
- Most viewed Entry
- Hottest Entry

Member:
- Newest Member
- Top Starter
- Top Referrer
- Top Reputation
- Top thanked
- Top Richest
- Top Bloger

Install:
1. Upload all the folder with file in UPLOAD folder to your root folder.
2. Import Product
3. Settings -> options - > [AJAX] - Advanced Forum Statistics change all options to fit your need.
4. Remember to mark as installed and nominate if you use and like this mod.

History version:
v 4.0.0 : first release
v 4.0.1 : Update with some little fix
v 4.0.2 : Update 1 new template which dispay thread information when mouse-over view.
v4.0.4: Optimize, fix css, add thread prefix. Work with latest version 4.0.2 patch level 1
IF YOU ARE NOT RUNNING VBULLETIN 4.0.2 or HIGHER - DO NOT UPGRADE TO 4.0.4 OR IT WILL MESS YOUR BOARD>
v4.0.4.a: Quick fix with tooltips.

Regards,
haothiencz

Download Now

File Type: zip [AJAX] - Advanced Forum Statistics.zip (33.3 KB, 1573 views)
File Type: zip [AJAX]Advanced Forum Statistic - 4.0.2.zip (32.5 KB, 2600 views)
File Type: zip [AJAX] TopX 4.0.4.zip (34.3 KB, 3494 views)
File Type: xml product-ajax_topstats_vb4a.xml (66.9 KB, 1783 views)

Screenshots

File Type: png vBCreative.net - Premium vBulletin Style_1263237317659.png (29.4 KB, 0 views)
File Type: jpg vBulletin Options - vBCreative.net - Premium vBulletin Style - vBulletin Admin Control Panel_126.jpg (99.3 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
iiioroh

Comments
  #192  
Old 01-25-2010, 08:40 PM
Trek Trek is offline
 
Join Date: Sep 2003
Posts: 664
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

These are both things I just figure out myself, here ya go. =)

Quote:
Originally Posted by Siyico View Post
I'm having a little trouble. can somebody help me out?

1) Im trying to move it where the lines are pointed, but im not sure what code i need to move and not sure which template to edit.#
Open the options for the Forum Stats mod, Set "Auto Template" to "No".

Edit the FORUMHOME template, search for: <!-- what's going on box -->

Add BEFORE: {vb:raw ad_location.vietv2b_topx}

Quote:
Originally Posted by Siyico View Post
2) Is there any way i can change the colour scheme? it does NOT look good at the moment.
Open your templates -> CSS Templates -> +++++++_topstats.css << for some reason, that's getting censored. template name is: vietv bb _ topstats.css

Edit the values there.


Thanks for any help etc [/quote]
Reply With Quote
  #193  
Old 01-25-2010, 09:39 PM
Siyico Siyico is offline
 
Join Date: Jan 2010
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Trek View Post
These are both things I just figure out myself, here ya go. =)

Thanks a ton bro, really helped me out.

Don't suppose there is a way i can delete the white - - - - - - line ?

Thanks <33
Reply With Quote
  #194  
Old 01-26-2010, 05:39 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will someone please figure out a way to implement the postid into this script. I hate clicking a link, and having to scroll down to the post. Example:

The links look like this:
hxxp://thewindows7site.com/forum/threads/16995-Going-out-and-buying-a-Windows-7-PC?goto=newpost

And the link resolves into this:
hxxp://thewindows7site.com/forum/threads/16995-Going-out-and-buying-a-Windows-7-PC?p=142741

It needs to resolve into this:
hxxp://thewindows7site.com/forum/threads/16995-Going-out-and-buying-a-Windows-7-PC?p=142741#post142741


Reply With Quote
  #195  
Old 01-26-2010, 06:15 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nvm, Ive figured out why the links are messed up.

Open up ./includes/class_core.php

Go to line: 2640

Find:
PHP Code:
        // save
        
if (!$path)
        {
            
$this->registry->relpath $relpath;
        }

        return 
$relpath;
    } 

Replace With:
PHP Code:
        // save
        
if (!$path)
        {
            
$this->registry->relpath $relpath;
        }
                if (
$fragment parse_url($pathPHP_URL_FRAGMENT))
            {
                        
$relpath .= '#' $fragment;
                }


        return 
$relpath;
    } 


Enjoy!
Reply With Quote
  #196  
Old 01-26-2010, 01:21 PM
Fusion2 Fusion2 is offline
 
Join Date: Oct 2006
Posts: 131
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome, I love it!

A few wish list items:

1. Ability to remove "Posted By USER INFO" from Latest Post.

2, Ability to remove "Registration Date" from Newest Member display on dropdown menu list.

3. When viewing LAST POST, it shows the words "Article" before each CMS post, but it doesnt show the same thing for FORUMS or BLOGS?
Reply With Quote
  #197  
Old 01-27-2010, 02:05 AM
drummaster's Avatar
drummaster drummaster is offline
 
Join Date: Jun 2008
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheWindows7Site View Post
Nvm, Ive figured out why the links are messed up.

Open up ./includes/class_core.php

Go to line: 2640

Find:
PHP Code:
        // save
        
if (!$path)
        {
            
$this->registry->relpath $relpath;
        }

        return 
$relpath;
    } 

Replace With:
PHP Code:
        // save
        
if (!$path)
        {
            
$this->registry->relpath $relpath;
        }
                if (
$fragment parse_url($pathPHP_URL_FRAGMENT))
            {
                        
$relpath .= '#' $fragment;
                }


        return 
$relpath;
    } 


Enjoy!
Thanks for the post but i havent got that code to find in my class_core.php
this has got me why not.
Reply With Quote
  #198  
Old 01-27-2010, 02:27 AM
Tripolis Tripolis is offline
 
Join Date: Feb 2009
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi !!

I install this addon.

I have delete a forum.
When someone go to the deleted forum i become a database errror.
The problem, i deleted it and someone comes from google to this old forum.

Quote:
Datenbankfehler in vBulletin 4.0.1:

Invalid SQL:

SELECT thread.threadid, thread.title, thread.lastpost, thread.forumid, thread.replycount, thread.postusername, thread.postuserid, thread.lastposter, thread.lastposterid, thread.dateline, thread.views, thread.visible, thread.open, user.usergroupid, user.displaygroupid
FROM thread AS thread
LEFT JOIN user AS user ON (user.userid = thread.lastposterid)
WHERE NOT ISNULL(thread.threadid) AND thread.visible = '1' AND thread.open!='10' AND thread.forumid NOT IN(7,34,35,)
ORDER BY lastpost DESC
LIMIT 0, 8;

MySQL-Fehler : 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 ')
ORDER BY lastpost DESC
LIMIT 0, 8' at line 4
Fehler-Nr. : 1064
Fehler-Zeit : Tuesday, 26.01.2010 @ 20:02:43
Datum : Tuesday, 26.01.2010 @ 20:02:43
Skript : http://www.xxxx/forums/19-VZ-Portale-Kontakt
Referrer :
IP-Adresse : 67.xxxxxxxxxxxxxxxx
Benutzername : Unregistriert
Klassenname : vB_Database
MySQL-Version :
I think, it comes form this addon.
Reply With Quote
  #199  
Old 01-27-2010, 04:05 AM
Trek Trek is offline
 
Join Date: Sep 2003
Posts: 664
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wanted to add in the forum the posts were in as well and came up with this. Might be a better way to do it, but it worked for me. =)

Open template: viet vbb_topstats_latest_posts

Find:

Code:
{vb: raw content.threadinfo}
Add Above

Code:
        <div style="padding-left:60%;">
        <a href="{vb:raw bburl}forumdisplay.php?{vb:var content.forumid}">{vb:raw content.fullforumtitle}</a>
        </div>
Reply With Quote
  #200  
Old 01-27-2010, 04:05 AM
Trek Trek is offline
 
Join Date: Sep 2003
Posts: 664
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also, if anyone figures out where that annoying white dashed line is... please tell me. I can't find it and would LOVE to remove it. (Looks like hell on a dark background)
Reply With Quote
  #201  
Old 01-27-2010, 04:13 AM
RL714 RL714 is offline
 
Join Date: Feb 2006
Location: OC, California
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Trek View Post
Also, if anyone figures out where that annoying white dashed line is... please tell me. I can't find it and would LOVE to remove it. (Looks like hell on a dark background)
that is an images listbg.gif in folder topx, you may download my listbg.gif blank to replace as you want
Attached Images
File Type: gif listbg.gif (116 Bytes, 0 views)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:29 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05475 seconds
  • Memory Usage 2,379KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (4)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (7)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete