Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
Toplist Details »»
Toplist
Version: 2.0.0, by derekivey derekivey is offline
Developer Last Online: Jan 2010 Show Printable Version Email this Page

Version: 3.5.8 Rating:
Released: 10-17-2005 Last Update: 01-04-2007 Installs: 412
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations  
No support by the author.

Toplist
Developer: derekivey
Version: 2.0.0
vBulletin Version: 3.5.5 (Seems to work fine on 3.6.0)
File Edits: 0
Template Edits: 2 (Optional)
New Phrases: 294
Uses Plugins: Yes!
Difficulty: Easy

Description: This hack adds a Toplist to your forums. You can choose in the AdminCP whether to rank the sites by their In hits or their Out hits. It is fully phrased to make it easy to translate to another language if you need to. The users are able to add a site, edit, or delete their site if they added it. The Administrators can Edit the users' sites or Delete them.
This hack is for vBulletin 3.5.5.

*** I Strongly Recommend That You Backup Your Database Before Installing/Upgrading This Hack! ***

Planned features for a later release:
  • Add Image Storage Setting (hot linking or upload)
  • Add Stats Page [ Will be released later ]
  • Add API to get site info onto non-vB pages and other vB pages.
  • Add Site Comment System
  • Fix bug with & not being allowed in URLs [ Done ]
  • Add Setting to choose where to put Toplist Sites Marquee
  • Whatever else is suggested
Change Log
The change log is now available here.

Screen Shots
I have added screen shots of this hack in action below.
More screenshots are located here.

Demo
You can find demo information here.

Translations
You can find a French translation of this hack here.

For a How To on Editing the Dynamic Image, See this Post.

Please click Install you installed this hack.


Thanks!

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #772  
Old 06-11-2006, 03:25 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by derfelix
Hi Derek
Big thumbs up.. havent updated yet cause im just upgrading vbulletin..
but looks great with all the new features!!!

may i add a couple of wishes for next release???
(i'm comparing the features to my existing external toplist)

functionality:
- add a cron to reset the counts..
why? because if any new sites are added.. they will never be able to move up if some sites have been there for years with thousands of ins and outs. (usually i have a cron on a weekly base ... but a reset once a month would be fine also)

- add a cache to the generated banners
if the site that uses the stats banner has 1.000.000 hits a day.. it will be generated 1.000.000 times ON YOUR SERVER. (cache update once an hour or day.. or only if things change)

- change the layout to standard banners 468x60
When using the standard banners.. the layout gets to wide specially if you are using a left navigation block.. it would be, for those banners much nicer if the banner was between site title and description, not needing an extra column.

- only show banners for the first 10 or 20 or 30 sites
the banners for the others should not appear. (sort of reward for good sites)

Last .. but this is just the frosting on the pie

- have a plus [+] minus [-] or equal [=] sign near the ranking
so users would know if this site is coming up or loosing rank.. example i a site is ranked 4 it would have a symbol besides the rank (or somewhere else) if the former rank was 3 it would be a [-] .. if the former rank was 10 it would be a [+].. and if nothing has changed.. ie. the former rank was 4 in the last 24 hours so.. it would be [=]... hmm i'll check with my toplist pro what criteria they use for [=]

sorry if one of these features is allready implemented.. as i said i will only be upgrading during the week. (I only looked at the changelog)
But I think its great and looks very professional now!!!!!

And last... just had an idea.. and i dunno if its easy to implement..
- if a user has a homepage in his profile, add a little checkbox in his settings so he can have it added automatically to the toplist (it should tell him to add a banner as soon as possible)

thats all for now.. no more ideas

Felix
Hey,

Nice ideas! I think I will add most of them, but I don't know how I would go about creating a cache for the generated banners. Do you know how I could do this?

Also, I'm not sure how I can add a plus, or negative sign right now because it would probably require me to rewrite a lot of the script. Right now, the ranks are not stored in the database, so there is no record of their old ones at all. I could probably make another table in the database to store them but not sure yet, I'll have to see about that one.

Derek
Reply With Quote
  #773  
Old 06-11-2006, 04:38 PM
derfelix derfelix is offline
 
Join Date: Nov 2001
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by derekivey
Hey,

Nice ideas! I think I will add most of them, but I don't know how I would go about creating a cache for the generated banners. Do you know how I could do this?
well the way i would do it, (but i often have clumsy solutions ) ist that i would create a cache folder.. and generate the jpg or png in there.. as filename i would use a name underscore banner id (ex: statsbanner_000001.jpg)
the cache folder schould be 777
and each time a banner is created dont forget the chmode 0777 so it can be overwritten by a newly generated one.
(I forgot that one.. because it worked fine without it.. -the script being the creator- but when i upgraded to another version of my script.. i couldnt access the files anymore) heres the code snippet for the file creation:
PHP Code:
$stats_banner "statsbanner_" $banner_id ".png";
@
imagepng($sourcebanner$cache_path $stats_banner);
@
chmod($cache_path $stats_banner0777);
//send banner to browser
@imagepng($sourcebanner); // yes source banner.. as we just created it.. no need to fetch from disk
@imagedestroy($sourcebanner); // free memory as some systems dont do it automatically 
You probably know it.. but as i just spent 3 hours finding out why my other script didnt work after upgrade.. i thought a reminder to add the chmod wouldn't harm.. and maybe even save time
Ah yes and i think i read that php 5 doesnt like the @ in front of the commands.. but im not sure..


in the script that calls the banner...

if -> no cache banner exists for this banner id.. ->
create new one (like now) ->
but save it to cache ->
and then display it (on the fly like done now) (SEE THE CODE SNIPPET ABOVE !!)

else

if -> cache banner exists for this id.. ->
check creation time ->


if it is older than (now) minus offset ->
create new one ->
overwrite the old one ->
display it on the fly (like it is done now) (SEE THE CODE SNIPPET ABOVE !!)
else (it was created between now and (now-time offset))
do nothing and only display the cached one
with:
PHP Code:
$stats_banner "statsbanner_" $banner_id ".png";
readfile($cache_path $stats_banner); 
time offset should be changeble by admin (xx minutes) (xx hours) (maybe days) but no complicated milliseconds settings..
if no time offset is set.. then all banners are created on the fly and caching is disabled.



this would not require database for cached banner.. difference to offset is calculated by file creation time.
it would be better than to create it on change of stats.. because that would require database.

thats the way i would do it.. but there is maybe a better way..


Quote:
Originally Posted by derekivey
Also, I'm not sure how I can add a plus, or negative sign right now because it would probably require me to rewrite a lot of the script. Right now, the ranks are not stored in the database, so there is no record of their old ones at all. I could probably make another table in the database to store them but not sure yet, I'll have to see about that one.
Derek
hey that is absolutely not a must.. its just a nice feature.. but i wouldn't place it top on the todo list..

felix
Reply With Quote
  #774  
Old 06-11-2006, 11:36 PM
michaelsilvia michaelsilvia is offline
 
Join Date: Jul 2005
Location: South Korea
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am attaching the image.

Also, I am having a new problem with categories. How do you delete or edit categories? I get this error.

Quote:
Sorry, you cannot edit a category without first selecting one. Please try again, and make sure a id is included in the url.
There is no way to select the category in the ACP.

Mike
Reply With Quote
  #775  
Old 06-12-2006, 05:03 AM
DementedMindz DementedMindz is offline
 
Join Date: Jan 2006
Posts: 1,474
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok fixed my other problem but whats up with Main Category you cant delete or edit that or something? i try to delete it or edit and its telling me Sorry, in order to delete a category you must select an ID to delete. Please try again.
Reply With Quote
  #776  
Old 06-12-2006, 03:09 PM
loonytune15's Avatar
loonytune15 loonytune15 is offline
 
Join Date: Mar 2003
Location: Loony Bin
Posts: 357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice ideas in there
Still got 2 bugs currently.
1. none of the images are working in the admincp.
2. I hvae slected the optin to open in new window yet it still opens in the same window.

Any ideas?
Reply With Quote
  #777  
Old 06-12-2006, 03:35 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by derfelix
well the way i would do it, (but i often have clumsy solutions ) ist that i would create a cache folder.. and generate the jpg or png in there.. as filename i would use a name underscore banner id (ex: statsbanner_000001.jpg)
the cache folder schould be 777
and each time a banner is created dont forget the chmode 0777 so it can be overwritten by a newly generated one.
(I forgot that one.. because it worked fine without it.. -the script being the creator- but when i upgraded to another version of my script.. i couldnt access the files anymore) heres the code snippet for the file creation:
PHP Code:
$stats_banner "statsbanner_" $banner_id ".png";
@
imagepng($sourcebanner$cache_path $stats_banner);
@
chmod($cache_path $stats_banner0777);
//send banner to browser
@imagepng($sourcebanner); // yes source banner.. as we just created it.. no need to fetch from disk
@imagedestroy($sourcebanner); // free memory as some systems dont do it automatically 
You probably know it.. but as i just spent 3 hours finding out why my other script didnt work after upgrade.. i thought a reminder to add the chmod wouldn't harm.. and maybe even save time
Ah yes and i think i read that php 5 doesnt like the @ in front of the commands.. but im not sure..


in the script that calls the banner...

if -> no cache banner exists for this banner id.. ->
create new one (like now) ->
but save it to cache ->
and then display it (on the fly like done now) (SEE THE CODE SNIPPET ABOVE !!)

else

if -> cache banner exists for this id.. ->
check creation time ->


if it is older than (now) minus offset ->
create new one ->
overwrite the old one ->
display it on the fly (like it is done now) (SEE THE CODE SNIPPET ABOVE !!)
else (it was created between now and (now-time offset))
do nothing and only display the cached one
with:
PHP Code:
$stats_banner "statsbanner_" $banner_id ".png";
readfile($cache_path $stats_banner); 
time offset should be changeble by admin (xx minutes) (xx hours) (maybe days) but no complicated milliseconds settings..
if no time offset is set.. then all banners are created on the fly and caching is disabled.



this would not require database for cached banner.. difference to offset is calculated by file creation time.
it would be better than to create it on change of stats.. because that would require database.

thats the way i would do it.. but there is maybe a better way..




hey that is absolutely not a must.. its just a nice feature.. but i wouldn't place it top on the todo list..

felix
I'll look into adding the cache but can't make any guarentees, I was also thinking about maybe moving the buttons to the database instead of using file storage but I'm not sure yet.
Reply With Quote
  #778  
Old 06-12-2006, 03:43 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Guys,

Please try uploading the attached file to the admincp directory to see if it fix any of those bugs. It seems to be working for me but I want to make sure.

Thanks,
Derek
Reply With Quote
  #779  
Old 06-12-2006, 04:09 PM
derfelix derfelix is offline
 
Join Date: Nov 2001
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i personnally think that putting graphs in the dbase takes more ressources than filesystem.. anyway noone can find the cachefolder if you get it with readfile
--------------
Just looked at my standalone toplist and found what I was missing here:

Anti cheat..
we have now the ability to control if the code is on the users site.. great.
but the user could click hundreds of times on his banner on his site.. giving it lots of ins! there are 2 ways of preventing this.. by logging ips.. and with cookies..

second:
a user links out to his site.. this is a good and clean site.. its ok..
after a week.. he changes the outlink and sends people clicking his banner to a viagra site.. or a ringtone site or a porn site.. his outlink the admin should be notified. (ok... as few of these sites will have the code - which is checked here - it is only of minor importance)

Felix
@derek
if you wish i can pm you admin info for that toplist so you can take a look at the admin interface.
Reply With Quote
  #780  
Old 06-12-2006, 04:14 PM
loonytune15's Avatar
loonytune15 loonytune15 is offline
 
Join Date: Mar 2003
Location: Loony Bin
Posts: 357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

that file you atached works Derek. I am now showing the images in the admincp.

but the open in new window still doesn't work.
Reply With Quote
  #781  
Old 06-12-2006, 04:45 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok I'll take a look at that loonytune15. Do you still have the categories problem though?
Reply With Quote
Reply

Thread Tools

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 06:30 PM.


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.05645 seconds
  • Memory Usage 2,341KB
  • Queries Executed 26 (?)
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
  • (4)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete