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 - TIO/FTL Compatible Ranking Ladder System LITE (https://vborg.vbsupport.ru/showthread.php?t=208705)

schlottkej 03-19-2009 05:01 PM

Quote:

Originally Posted by Jaxel (Post 1771552)
Try this file and tell me if it works... if it does, I will add it to the main file.

This worked for most, but not http://www.thewrestlingtalk.com/ranking.php?do=events

Also- if I want to run tournaments, which script of your's will I Need? TIO? What is it and where can i find it?

schlottkej 03-19-2009 05:03 PM

I believe I found it: http://allisbrawl.com/tio/

DobieGillis? 03-19-2009 06:13 PM

Quote:

Originally Posted by schlottkej (Post 1771953)
I believe I found it: http://allisbrawl.com/tio/

so let me understand all this. This Mod cannot be used to create an event and I need what you linked in order to do so? Then what is the purpose of this Mod may I ask?

HoLyMeN 03-19-2009 08:11 PM

Quote:

Originally Posted by Jaxel (Post 1771546)
This mod must be installed in your FORUM ROOT...

which means http://www.ps3multiplayer.com/forum/ not http://www.ps3multiplayer.com/

thanks :up:

Jaxel 03-19-2009 09:57 PM

<a href="http://www.allisbrawl.com/tio" target="_blank">www.allisbrawl.com/tio</a>

Jaxel 03-19-2009 09:59 PM

Quote:

Originally Posted by DobieGillis? (Post 1771993)
so let me understand all this. This Mod cannot be used to create an event and I need what you linked in order to do so? Then what is the purpose of this Mod may I ask?

This mod is used to calculate the RESULTS of events into a ladder, not to actually run the events. You don't even have to use TIO; you can use ANY tournament running script you want. Hell, you can even run your tournaments on pen and paper. All this mod is for, is calculating the RESULTS of your tournaments after you input them. However, if you have the PRO version of this mod, you should be using TIO, as it will read the results directly from your TIO files, and GREATLY reduce the amount of work required to add a tournament to the rankings.

Jaxel 03-19-2009 10:04 PM

Quote:

Originally Posted by schlottkej (Post 1771952)
This worked for most, but not http://www.thewrestlingtalk.com/ranking.php?do=events

Also- if I want to run tournaments, which script of your's will I Need? TIO? What is it and where can i find it?

I dont understand this error... The code is...
Code:

SELECT * FROM rank_events AS rank_events
LEFT JOIN rank_games AS rank_games USING(gameID)
LEFT JOIN rank_categories AS rank_categories USING(categoryID)
ORDER BY eDate DESC
LIMIT 0, 30;

The error you are getting is: Unknown column 'thematfo_forum.rank_games.categoryID' in 'on clause'

This line of code should be joining rank_events with rank_games using gameID, and then joining rank_events with rank_categories using categoryID. For some reason, the script is trying to join rank_games (instead of rank_events) with rank_categories using categoryID; which wont work. Why this is only happening on YOUR server, and no one elses... confuses me. Try replacing the following code in ranking.php:

Code:

        $result = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."rank_events AS rank_events
                LEFT JOIN ".TABLE_PREFIX."rank_games AS rank_games USING(gameID)
                LEFT JOIN ".TABLE_PREFIX."rank_categories AS rank_categories USING(categoryID)
                ORDER BY $sort $order
                LIMIT ".($limitlower - 1).", $perpage
        ");

with...

Code:

        $result = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."rank_events AS rank_events
                LEFT JOIN ".TABLE_PREFIX."rank_games AS rank_games ON rank_events.gameID = rank_games.gameID
                LEFT JOIN ".TABLE_PREFIX."rank_categories AS rank_categories ON rank_events.categoryID = rank_category.categoryID
                ORDER BY $sort $order
                LIMIT ".($limitlower - 1).", $perpage
        ");


Jaxel 03-20-2009 04:47 PM

================================================== =========
Version 1.2.0
================================================== =========
  • Added better support for bracket viewing and tournament SPLITS.
  • Fixed several functional and template design issues.
  • Added Full PRO Version Support for Forum Tournamnets & Ladders.
    • You can now add results for FTL tournaments easily with the PRO version.
    • You can now add brackets for FTL tournaments easily with the PRO version.
  • FILE EDITS SINCE 1.1.1: (make sure you upload these new versions!)
    • upload/ranking.php
    • upload/ranking/functions_rank_pro.php
  • TEMPLATE EDITS SINCE 1.1.1: (make sure you revert these templates!)
    • rankings_event
    • rankings_event_bit
    • rankings_event_edit
    • rankings_event_edit_pro
    • rankings_event_edit_bit
    • rankings_event_edit_brack
    • rankings_player_bit

HoLyMeN 03-20-2009 06:25 PM

Database error in vBulletin 3.8.1:

Invalid SQL:
SELECT * FROM ps3multirank_events AS rank_events
LEFT JOIN ps3multirank_games AS rank_games USING(gameID)
LEFT JOIN ps3multirank_categories AS rank_categories USING(categoryID)
ORDER BY eDate DESC
LIMIT 0, 30;

MySQL Error : Unknown column 'ps3multi_ps3db.rank_games.categoryID' in 'on clause'
Error Number : 1054
Request Date : Friday, March 20th 2009 @ 03:22:16 PM
Error Date : Friday, March 20th 2009 @ 03:22:16 PM
Script : http://www.ps3multiplayer.com/forum/....php?do=events
Referrer : http://www.ps3multiplayer.com/forum/ranking.php
Classname : vb_database
MySQL Version : 4.1.22-standard-log

Jaxel 03-20-2009 07:39 PM

Try this new version please... fixes the many SQL errors.

================================================== =========
Version 1.2.1
================================================== =========
  • Replaced all instances of JOIN USING with JOIN ON in all files
  • This fixes the many MySQL join errors with older versions of MySQL.
  • FILE EDITS SINCE 1.2.0: (make sure you upload these new versions!)
    • upload/ranking.php
    • upload/ranking/functions_rank_pro.php


All times are GMT. The time now is 07:25 AM.

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.01813 seconds
  • Memory Usage 1,751KB
  • 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
  • (3)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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