The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Tournaments, Ladders & Leagues Manager v4.x Details »» | |||||||||||||||||||||||||||||||
Tournaments, Ladders & Leagues Manager v4.x
Developer Last Online: Nov 2023
Code:
Modification Description This modification allows you to manage tournaments and ladders on your forum. It provides interactibility both for forum members and forum admin.Tournament Types:
Users or teams can join ladders and challenge other players or teams in the ladder. Elo rating system is used which calculates the difficultly of a match according to the players' ranks and this is taken into account when the ranks are updated after the match is finished.Feature List:
** Don't forgot to click Mark as Installed ** Download Now
Show Your Support
|
14 благодарности(ей) от: | ||
BCP Hung, champendk, CharlieDelta, EBZ2010, fulger, GreyGhost, legiondadon, Lord. Dela, Omranic, pwnedPRO, sharif_aly, stwan, UPElvin |
Comments |
#2242
|
|||
|
|||
Apologises, I misread your message. If you reject a challenge, then your opponent won't receive a PM.
|
#2243
|
|||
|
|||
Too bad, is it possible to set it up?
|
#2244
|
||||
|
||||
A bug in your code that prevents access to the member profile pages.
In the file includes/functions_tal.php you have the following code: Code:
if (!in_array(THIS_SCRIPT, array('ladders', 'competitors', 'tournaments', 'teams')) && !$vbulletin) { global $vbulletin; print_r("<!-- Non-standard page, trying global vbulletin variable -->\r\n"); } if (!$vbulletin->options['tmnt_active'] && $vbulletin->userinfo['usergroupid'] != 6) { print_r("<!-- vBulletin Tournaments & Ladders disabled in AdminCP -->\r\n"); print_no_permission(); } Code:
global $vbulletin; //just globalize no need to test if it exists you don't gain anything if (in_array(THIS_SCRIPT, array('ladders', 'competitors', 'tournaments', 'teams'))) { print_r("<!-- Non-standard page, trying global vbulletin variable -->\r\n"); if (!$vbulletin->options['tmnt_active'] && $vbulletin->userinfo['usergroupid'] != 6) { print_r("<!-- vBulletin Tournaments & Ladders disabled in AdminCP -->\r\n"); print_no_permission(); } } |
#2245
|
||||
|
||||
It's not letting me add the files onto our server, any reason why?
|
#2246
|
|||
|
|||
Ok I got these messages:
Strict Standards: Only variables should be assigned by reference in /public_html/forums/teams.php on line 88 Strict Standards: Only variables should be assigned by reference in /public_html/forums/tournaments.php on line 112 I am aware of the php 5.4/5.5 changes and already have these hidden with the aforementioned hiding code in the inlcude/config.php file. However these errors are still showing any help will be appreciated |
#2247
|
|||
|
|||
Quote:
Try changing line 88 in /teams.php $actiontemplates['none'] =& array_merge($actiontemplates['teams'], $actiontemplates['viewteam']); To $actiontemplates['none'] = array_merge($actiontemplates['teams'], $actiontemplates['viewteam']); |
#2248
|
|||
|
|||
"Can view Tournaments" option on the usergroup, if set to "No" will lock the usergroup out from accessing any member.php (member profile) page including theirs.
Plugin disabled until this is fixed.... |
#2249
|
||||
|
||||
Quote:
|
#2250
|
|||
|
|||
Hello,
Can anyone help me? When ever I view a tournament I get the following error: Warning: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in ..../includes/functions_tal.php on line 1168 php ver: 5.59 any help? |
#2251
|
||||
|
||||
Quote:
Original: Code:
$userhtml = preg_replace('|\{([a-zA-Z0-9_-]*)\}|e', ' $userinfo["$1"] ', $vbulletin->options['tmnt_userhtml']); Code:
$userhtml = preg_replace_callback('|\{([a-zA-Z0-9_-]*)\}', function($m){return $userinfo[$m[1]];}, $vbulletin->options['tmnt_userhtml']); |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|