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

Reply
 
Thread Tools
Welcome Panel Details »»
Welcome Panel
Version: 1.1, by Megatekno Megatekno is offline
Developer Last Online: Apr 2010 Show Printable Version Email this Page

Version: 3.5.0 Beta 2 Rating:
Released: 06-15-2005 Last Update: 06-20-2005 Installs: 39
Uses Plugins Template Edits
 
No support by the author.

Staff Warning: Before installing this hack, please read through the the thread and install on a testboard first. Do not install this on a forum with a lot of posts.

Hello,

I May in paratage my welcome panel which I translated into US since I do not speak this language.


This hack allow you to add a welcome panel on home page of your forum.
It displays the avatar, quick statistics of the forum and informations on your privates messages.

Full plugins


This hack can be not distributed on other sites only vbulletin-fr.org and vbulletin.org.

Thank you

Supporters / CoAuthors

Show Your Support

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

Comments
  #42  
Old 06-29-2005, 07:48 PM
Loki12 Loki12 is offline
 
Join Date: Jul 2004
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snatch
If i enable the plugin, the complett Server becomes a very high load.

14:00:31 up 1 day, 13:09, 1 user, load average: 30.80, 29.73, 21.92

And a MYSQL Prozess with very high mem and CPU usage.

hmmm....
The same happened with me yesterday when I tried to install this ... so much so, that my host suspended my account!! I had to make phonecalls to sort it out. I think I won't risk this again, and give it a miss ... :ermm:
Reply With Quote
  #43  
Old 06-29-2005, 07:59 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Jeez!

PHP Code:
$welcomestatss $db->query("
                SELECT post.dateline, thread.lastpost, user.joindate
                FROM " 
TABLE_PREFIX "post AS post
                LEFT JOIN " 
TABLE_PREFIX "thread AS thread ON(thread.firstpostid = post.postid)
                LEFT JOIN " 
TABLE_PREFIX "user AS user ON(user.userid = post.userid)
                WHERE 1=1
"
); 
This query selects ALL posts ... every time you visit Forumhome.
Doesn't surprise me that this causes HEAVY load.
This query must be optimized to process only thos posts that are newer then today midnight or last visit (whatever is older).

Furthermore the "Template-Caching" isn't good:
PHP Code:
$globaltemplates array_merge($globaltemplates, array('welcome_panel'));
cache_templates($globaltemplates$style['templatelist']);
unset(
$globaltemplates); 
This code should be removed.

And the following put in Hook cache_templates:
PHP Code:
$globaltemplates array_merge($globaltemplates, array('welcome_panel')); 
Reply With Quote
  #44  
Old 06-29-2005, 09:58 PM
Snatch Snatch is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 124
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can anybody fix this ?
Reply With Quote
  #45  
Old 07-03-2005, 11:27 PM
Cloudrunner's Avatar
Cloudrunner Cloudrunner is offline
 
Join Date: May 2003
Location: Butte, MT
Posts: 635
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snatch
Can anybody fix this ?
After this hack CRASHED my server and my host yelled at me for an hour today, I've decided to fix this damned thing from scratch. I'm letting the author know here that I'm using his concept, but will be redoing it from step 1, it is not a copyright infringement issue since I will be rewriting this without anything to go on other than the images supplied. I'm asking the author of this to PM me if there is a problem with me doing this, but since it's loading 90% of the servers that it's installed on (if not crashing them completely), I'm starting on this tonight.

If there is a problem with this, let me know and I will halt production, if not then the author will get credit on my posting as the concept inspiration.
Reply With Quote
  #46  
Old 07-04-2005, 12:02 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snatch
Can anybody fix this ?
I could ... but it's not my hack so I can't.
Reply With Quote
  #47  
Old 07-04-2005, 05:56 AM
Cloudrunner's Avatar
Cloudrunner Cloudrunner is offline
 
Join Date: May 2003
Location: Butte, MT
Posts: 635
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snatch
Can anybody fix this ?
I'm in final testing of this redo, and it's taken up alot less resources, all in all it only adds one major query, and four COUNT(*) queries to the system (I'm not sure what the overhead on that is, I'm trying to compress those four into one, but haven't succeeded thus far).

Anyway, I'll give the author of this thread until 12 PM, EST, 4 July 2005 to PM me with a cease and decist order, if I haven't gotten one by then I will release my version with credit for the idea to this thread's author.
Reply With Quote
  #48  
Old 07-04-2005, 10:00 AM
Otikeu Otikeu is offline
 
Join Date: Nov 2004
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this modification looks great! I'm wondering, do you have a vB3 edition? So I could use this for my vBulletin v3.0.7 board?

thanks in advance.
Reply With Quote
  #49  
Old 07-04-2005, 06:30 PM
Loki12 Loki12 is offline
 
Join Date: Jul 2004
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Otikeu
this modification looks great! I'm wondering, do you have a vB3 edition? So I could use this for my vBulletin v3.0.7 board?

thanks in advance.
Wait for an update before you install, and save your server and hosting account !! I narrowly escaped permanent suspension because of this hack.
Reply With Quote
  #50  
Old 07-04-2005, 07:35 PM
Cloudrunner's Avatar
Cloudrunner Cloudrunner is offline
 
Join Date: May 2003
Location: Butte, MT
Posts: 635
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since this modification was killing servers, and almost got me booted off of my LIFETIME account (REALLY pissed off about that), I redid this mod from scratch using Megatekno's conceptual idea as basis. I have not received a "Cease and Decist" order from the author since posting my intentions last night, so I have released my version here: https://vborg.vbsupport.ru/showthread.php?t=91624

If my posting this here is not acceptable feel free to remove it, but I do think that since the hack was killing servers people need to know that it will prolly kill theirs too if they install this one.
Reply With Quote
  #51  
Old 09-03-2005, 06:46 PM
MindTrix's Avatar
MindTrix MindTrix is offline
 
Join Date: Apr 2002
Location: United Kingdom
Posts: 1,833
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I installed this without reading every page and now i cant anything on my site :s Every page wont load not even the admincp
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 11:24 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.04625 seconds
  • Memory Usage 2,316KB
  • 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
  • (3)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
  • (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