|
Корзина Глупые, устаревшие, неактуальные темы будут тут. Сюда сливается весь треш форума. Если ваш пост оказался здесь, подумайте - стоит ли еще раз писать? |
|
Опции темы | Поиск в этой теме | Опции просмотра |
02.01.2011, 20:22 | #1 |
Гость
Сообщений: n/a
|
мусор
ребят как пропатчить ядко trinity ? я не очень разбираюсь, помогите плиз!
|
11.01.2011, 15:59 | #2 |
Гость
Сообщений: n/a
|
Помогите народ ненаю чё делать - страница персонажа не открывается - вот код-
-сборку пропатчил -вот код ошибок! Код:
ERROR [11-01-2011 15:54:15]: Characters::BuildCharacter : player 19 (Эфия) has no data in `armory_character_stats` table (SQL update to Characters DB was not applied? / Character was not saved in game? / Server core was not patched?) ERROR [11-01-2011 15:54:15]: Achievements::InitAchievements : wrong player guid (0), ignore. ERROR [11-01-2011 15:54:15]: ArmoryDatabaseHandler::ArmoryDatabaseHandler : unable to connect to MySQL Server (host: "localhost", dbName: "characters"). Error: none. Check your configs. DEBUG [11-01-2011 15:54:15]: ArmoryDatabaseHandler::_query : unable to execute SQL query (SELECT COUNT(*) FROM `characters` WHERE `account`=10). MySQL error: none ERROR [11-01-2011 15:54:15]: ArmoryDatabaseHandler::ArmoryDatabaseHandler : unable to connect to MySQL Server (host: "localhost", dbName: "characters"). Error: none. Check your configs. DEBUG [11-01-2011 15:54:15]: ArmoryDatabaseHandler::_query : unable to execute SQL query ( SELECT `characters`.`guid`, `characters`.`name`, `characters`.`class` AS `classId`, `characters`.`race` AS `raceId`, `characters`.`gender` AS `genderId`, `characters`.`level`, `guild_member`.`guildid` AS `guildId`, `guild`.`name` AS `guild` FROM `characters` AS `characters` LEFT JOIN `guild_member` AS `guild_member` ON `guild_member`.`guid`=`characters`.`guid` LEFT JOIN `guild` AS `guild` ON `guild`.`guildid`=`guild_member`.`guildId` WHERE `characters`.`account`=10). MySQL error: none DEBUG [11-01-2011 15:54:15]: Utils::GetAllCharacters : no characters found for account 10 in `characters` database DEBUG [11-01-2011 15:54:15]: Utils::GetBookmarks : bookmarks for account 10 not found |
11.01.2011, 16:13 | #3 | |
Гость
Сообщений: n/a
|
hyper
Цитата:
|
|
11.01.2011, 17:09 | #4 |
Гость
Сообщений: n/a
|
все проверил
|
11.01.2011, 21:52 | #6 |
Гость
Сообщений: n/a
|
Вот ненаю в чем дело возьмите мой конфиг! =====>
Код:
<?php /** * @package World of Warcraft Armory * @version Release Candidate 1 * @revision 348 * @copyright (c) 2009-2010 Shadez * @license http://opensource.org/licenses/gpl-license.php GNU Public License * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA **/ if(!defined('__ARMORY__')) { die('Direct access to this file not allowed!'); } ############################################### # World of Warcraft Armory configuration file # ############################################### $ArmoryConfig = array(); $ArmoryConfig['mysql'] = array(); $ArmoryConfig['settings'] = array(); $ArmoryConfig['multiRealm'] = array(); ############################################################################################## # MySQL Database Configuration # $ArmoryConfig['mysql']['host_*'] # $ArmoryConfig['mysql']['user_*'] # $ArmoryConfig['mysql']['pass_*'] # $ArmoryConfig['mysql']['name_*'] # $ArmoryConfig['mysql']['charset_*'] # Database connection settings for different databases # Default: # host: localhost # user: root # pass: # charset: UTF8 ############################################################################################## $ArmoryConfig['mysql']['host_armory'] = 'localhost'; $ArmoryConfig['mysql']['user_armory'] = 'mangos'; $ArmoryConfig['mysql']['pass_armory'] = 'mangos'; $ArmoryConfig['mysql']['name_armory'] = 'armory'; $ArmoryConfig['mysql']['charset_armory'] = 'UTF8'; $ArmoryConfig['mysql']['host_realmd'] = 'localhost'; $ArmoryConfig['mysql']['user_realmd'] = 'mangos'; $ArmoryConfig['mysql']['pass_realmd'] = 'mangos'; $ArmoryConfig['mysql']['name_realmd'] = 'realmd'; $ArmoryConfig['mysql']['charset_realmd'] = 'UTF8'; ############################################################################################## # Armory configuration # # useNews # News module enabled/disabled # Default: false (Disabled) # true (Enabled) # # defaultBGName # Battlegroup name (currently doesn't do anything, just cosmetic) # Default: Massive Network # # useCache # Cache module enabled/disabled # Default: false (Disabled) # true (Enabled) # # cache_lifetime # Rebuild cache delay (in seconds) # Default: 86400 (1 day) # # db_prefix # Armory database prefix (without "_"!) # Default: armory # # minlevel # Players with level below this value wouldn't be displayed in Armory # Default: 10 (Recommended) # # minGmLevelToShow # Characters with this GM level and below it will be displayed in Armory # Default: 3 (Everyone) # 2 (Everyone except Administrators will be displayed in Armory) # 1 (Everyone except Administrators and GMs will be displayed in Armory) # 0 (Only players will be displayed in Armory) # # defaultLocale # Site default locale # Default: en_gb (UK English) # en_us (US English) # es_es (Spanish) # de_de (German) # fr_fr (French) # ru_ru (Russian) # # maintenance # Disable site and redirect users to info page # Default: false (Site is not disabled) # true (Site is disabled) # # useDebug # Debug log module enabled/disabled # Default: false (Disabled) # true (Enabled) # # logLevel # Logging level # Default: 2 (Full debug) # 1 (Errors only) # # configVersion # Configuration file version. This option must not be changed (only by commits)! # Default: DDMMYYYYNN (day, month, year, changes count) # # checkVersionType # Armory errors reporting style (wrong database version, config version mismatch, etc.) # Default: show (Display all errors and exit script. Recommended) # log (Write errors to log (if enabled) and continue script work) ############################################################################################## $ArmoryConfig['settings']['useNews'] = false; $ArmoryConfig['settings']['defaultBGName'] = 'Massive Network'; $ArmoryConfig['settings']['useCache'] = false; $ArmoryConfig['settings']['cache_lifetime'] = 86400; $ArmoryConfig['settings']['db_prefix'] = 'armory'; $ArmoryConfig['settings']['minlevel'] = 10; $ArmoryConfig['settings']['minGmLevelToShow'] = 3; $ArmoryConfig['settings']['defaultLocale'] = 'en_gb'; $ArmoryConfig['settings']['maintenance'] = false; $ArmoryConfig['settings']['useDebug'] = true; $ArmoryConfig['settings']['logLevel'] = 2; $ArmoryConfig['settings']['configVersion'] = '0708201001'; $ArmoryConfig['settings']['checkVersionType'] = 'show'; ############################################################################################## # Multirealms configuration # # id # Realm id. Must be unique. Also, this value must be the same with X ($ArmoryConfig['multiRealm'][X]). # # name # Realm name. Must be unique. # # type # Server type ('mangos' or 'trinity'). # # host_* # MySQL server host for characters/world database. # Default: localhost # # user_* # MySQL username for characters/world database. # Default: root # # pass_* # Password for MySQL user. # # name_* # Database name for characters/world database. # # charset_* # MySQL database charset. # Default: UTF8 (Recommended) # ############################################################################################## $ArmoryConfig['multiRealm'][1]['id'] = 1; $ArmoryConfig['multiRealm'][1]['name'] = 'Авангард'; $ArmoryConfig['multiRealm'][1]['type'] = 'mangos'; $ArmoryConfig['multiRealm'][1]['host_characters'] = 'localhost'; $ArmoryConfig['multiRealm'][1]['user_characters'] = 'mangos'; $ArmoryConfig['multiRealm'][1]['pass_characters'] = 'mangos'; $ArmoryConfig['multiRealm'][1]['name_characters'] = 'characters'; $ArmoryConfig['multiRealm'][1]['charset_characters'] = 'UTF8'; $ArmoryConfig['multiRealm'][1]['host_world'] = 'localhost'; $ArmoryConfig['multiRealm'][1]['user_world'] = 'mangos'; $ArmoryConfig['multiRealm'][1]['pass_world'] = 'mangos'; $ArmoryConfig['multiRealm'][1]['name_world'] = 'mangos'; $ArmoryConfig['multiRealm'][1]['charset_world'] = 'UTF8'; $ArmoryConfig['multiRealm'][2]['id'] = 2; $ArmoryConfig['multiRealm'][2]['name'] = 'Авангард 2'; $ArmoryConfig['multiRealm'][2]['type'] = 'trinity'; $ArmoryConfig['multiRealm'][2]['host_characters'] = 'localhost'; $ArmoryConfig['multiRealm'][2]['user_characters'] = 'mangos'; $ArmoryConfig['multiRealm'][2]['pass_characters'] = 'mangos'; $ArmoryConfig['multiRealm'][2]['name_characters'] = 'characters'; $ArmoryConfig['multiRealm'][2]['charset_characters'] = 'UTF8'; $ArmoryConfig['multiRealm'][2]['host_world'] = 'localhost'; $ArmoryConfig['multiRealm'][2]['user_world'] = 'root'; $ArmoryConfig['multiRealm'][2]['pass_world'] = ''; $ArmoryConfig['multiRealm'][2]['name_world'] = 'mangos'; $ArmoryConfig['multiRealm'][2]['charset_world'] = 'UTF8'; ?> |
12.01.2011, 05:09 | #7 |
Forum bot
Регистрация: 01.02.2010
Адрес: пусто
Сообщений: 841
Сказал(а) спасибо: 286
Поблагодарили 418 раз(а) в 190 сообщениях
Записей в дневнике: 60
|
неделя на перевод фразы "Check your configs".
PS стоп, соврал. пермабан за паблик...
__________________
Совершенно безопасен для людей, обладающих хотя бы некоторыми минимальными зачатками интеллекта, и способными строить причинно-следственные цепочки. |
|
|