vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - Forum Tournaments & Ladders (https://vborg.vbsupport.ru/showthread.php?t=189375)

bananalive 04-14-2009 07:29 AM

1 Attachment(s)
Quote:

Originally Posted by SnapOff Racing (Post 1789445)
installed 2.8.1 and 2.8.0 and i get this error when creating a tournament:

Code:

Fatal error: Registry object is not an object in [path]/includes/class_dm.php on line 177
#0 vb_error_handler(256, Registry object is not an object, /home/gears/public_html/forums/includes/class_dm.php, 177, Array ([this] => vB_DataManager_Thread_FirstPost Object ([validfields] => Array ([firstpostid] => Array ([0] => 3,[1] => 2),[lastpost] => Array ([0] => 3,[1] => 2),[forumid] => Array ([0] => 3,[1] => 1),[pollid] => Array ([0] => 3,[1] => 0),[open] => Array ([0] => 3,[1] => 2,[2] => _-_mEtHoD_-_),[replycount] => Array ([0] => 3,[1] => 2),[hiddencount] => Array ([0] => 3,[1] => 2),[deletedcount] => Array ([0] => 3,[1] => 2),[lastposter] => Array ([0] => 7,[1] => 2),[lastpostid] => Array ([0] => 3,[1] => 2),[views] => Array ([0] => 3,[1] => 0),[notes] => Array ([0] => 7,[1] => 0),[sticky] => Array ([0] => 3,[1] => 0,[2] => _-_mEtHoD_-_),[votenum] => Array ([0] => 3,[1] => 0),[votetotal] => Array ([0] => 3,[1] => 0),[similar] => Array ([0] => 7,[1] => 2),[prefixid] => Array ([0] => 7,[1] => 0,[2] => _-_mEtHoD_-_),[taglist] => Array ([0] => 7,[1] => 0),[threadid] => Array ([0] => 3,[1] => 3),[title] => Array ([0] => 7,[1] => 1,[2] => _-_mEtHoD_-_),[username] => Array ([0] => 7,[1] => 0,[2] => _-_mEtHoD_-_),[userid] => Array ([0] => 3,[1] => 0,[2] => _-_mEtHoD_-_),[dateline] => Array ([0] => 3,[1] => 2),[iconid] => Array ([0] => 3,[1] => 0,[2] => _-_mEtHoD_-_),[visible] => Array ([0] => 1,[1] => 0),[attach] => Array ([0] => 3,[1] => 0),[pagetext] => Array ([0] => 7,[1] => 1,[2] => _-_mEtHoD_-_),[allowsmilie] => Array ([0] => 3,[1] => 1),[showsignature] => Array ([0] => 1,[1] => 0),[ipaddress] => Array ([0] => 7,[1] => 2)),[bitfields] => Array (),[table] => thread,[condition_construct] => Array ([0] => threadid = %1$d,[1] => threadid),[thread] => Array (),[post] => Array (),[modlog] => Array (),[floodcheck] => ,[spamlog_insert] => ,[setfields] => Array (),[rawfields] => Array (),[registry] => ,[dbobject] => ,[lamda] => ,[errors] => Array (),[error_handler] => 1,[existing] => Array (),[info] => Array (),[condition] => ,[failure_callback] => ,[presave_called] => ),[registry] => ,[errtype] => 1)) called at [(null):0] #1 trigger_error(Registry object is not an object, 256) called at [/home/gears/public_html/forums/includes/class_dm.php:177] #2 vB_DataManager->vB_DataManager(, 1) called at [/home/gears/public_html/forums/includes/class_dm_threadpost.php:1482] #3 vB_DataManager_Thread_FirstPost->vB_DataManager_Thread_FirstPost(, 1) called at [/home/gears/public_html/forums/includes/functions_tal.php:166] #4 new_thread(1, 38, Test,
Test
No Players: 4 Type: 1v1 Description: testing testing 123 , 1, 1, 1) called at [/home/gears/public_html/forums/tournaments.php:998]

An additional question would be:


If I wanted to create a tournament after I've hosted and completed one and wanted to set up the brackets, etc as they happened is this possible? to give the teams that won credit, etc? to keep track of their records? I hope so. Can someone explain please?

Thanks

Quote:

Originally Posted by Jayphen (Post 1790804)
Same here, both versions, though 2.8.1 still shows as 2.8.0 btw.


Upload attached file to

includes\

bananalive 04-14-2009 07:30 AM

Quote:

Originally Posted by The_Rascal (Post 1789663)
is there anyway to remove the leader and promote another member of the team to leader?
or can only the leader do that?

nope only team leader can promote players

bananalive 04-14-2009 07:31 AM

Quote:

Originally Posted by H3C x Nevz (Post 1790546)
The VBulletin Editor stretches out my pages whenever there's one on the screen. Is there any way to adjust their width?

It shouldn't. Can i see screenshot please?

Jaxel 04-14-2009 08:03 AM

Quote:

Originally Posted by bananalive (Post 1790853)
It shouldn't. Can i see screenshot please?

I can confirm it does this as well... I've been mentioning it for a while now, but I guess you never got aroudn to fixing it, so I had to fix it myself (its one of the MANY template fixes I've made). It happens because you force 640px as the panel width, when it should be called by the stylevars...

The problem is right here (code is in ALL your admin pages)
Code:

    <td class="panelsurround" align="center"><div class="panel">
        <div style="width:640px" align="left">
          <table cellpadding="0" cellspacing="0" border="0" class="fieldset">

It should read...
Code:

    <td class="panelsurround" align="center"><div class="panel">
        <div style="width:$stylevar[formwidth]" align="left">
          <table cellpadding="0" cellspacing="0" border="0" class="fieldset">

Also, because of the way you setup the $messagearea stuff, to use standard formwidth, instead of formwidth_usercp, that means those with larger messagearea widths can NEVER use the sidepanel option without it messing up the page layouts. Message areas in admin pages should be the width of a private message box, not the width of a new thread box.

bananalive 04-14-2009 08:42 AM

Quote:

Originally Posted by Jaxel (Post 1790869)
I can confirm it does this as well... I've been mentioning it for a while now, but I guess you never got aroudn to fixing it, so I had to fix it myself (its one of the MANY template fixes I've made). It happens because you force 640px as the panel width, when it should be called by the stylevars...

The problem is right here (code is in ALL your admin pages)
Code:

    <td class="panelsurround" align="center"><div class="panel">
        <div style="width:640px" align="left">
          <table cellpadding="0" cellspacing="0" border="0" class="fieldset">

It should read...
Code:

    <td class="panelsurround" align="center"><div class="panel">
        <div style="width:$stylevar[formwidth]" align="left">
          <table cellpadding="0" cellspacing="0" border="0" class="fieldset">

Also, because of the way you setup the $messagearea stuff, to use standard formwidth, instead of formwidth_usercp, that means those with larger messagearea widths can NEVER use the sidepanel option without it messing up the page layouts. Message areas in admin pages should be the width of a private message box, not the width of a new thread box.

Yes it should be:

HTML Code:

<div align="$stylevar[left]" style="max-width:$stylevar[formwidth]; width:auto !important; width:$stylevar[formwidth_usercp]">

Gamelobby 04-14-2009 05:43 PM

I dont seem to be having that problem, so im not going to worry, but will that be added to the next update.?

bananalive 04-14-2009 05:47 PM

Quote:

Originally Posted by Gamelobby (Post 1791191)
I dont seem to be having that problem, so im not going to worry, but will that be added to the next update.?

Yes. All fixes get added to consequent releases.

Shadawg 04-15-2009 02:44 AM

I dont know if this has been answered previously, but i am after changing the bracket colour? i cannot seem to find the right coding that relates to it...

P.Jackson 04-15-2009 07:55 AM

tis in the options

bananalive 04-15-2009 09:41 AM

Quote:

Originally Posted by Shadawg (Post 1791483)
I dont know if this has been answered previously, but i am after changing the bracket colour? i cannot seem to find the right coding that relates to it...

Yes, it's vBulletin Options -> Tournaments & Ladders Options


All times are GMT. The time now is 06:04 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.03270 seconds
  • Memory Usage 1,763KB
  • 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
  • (5)bbcode_code_printable
  • (1)bbcode_html_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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