Problém iConomy

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
ZutroCz
Příspěvky: 13
Registrován: 09 dub 2012, 18:13
Reputation: 0
Kontaktovat uživatele:

Problém iConomy

#1 Příspěvekod ZutroCz » 10 bře 2014, 23:39

Server: 93.91.250.144:27535
Ahoj mám velký problém s iConomy. Mám ho napojený na MySQL, kde to vytvořilo pár uživatelů. Čas šel dál iConomy přestává pracovat.
Už nevytváří účty. Nejde ani příkaz /money create. Napíše to: [money]Could not create account with the name Test123. <-Tohle píše u každého jména.
Nastavení iConomy.
Spoiler: zobrazit

Kód: Vybrat vše

# iConomy 6.0.8b
# @author     Nijikokun <nijikokun@gmail.com>
# @license    GPLv2
# @copyright  Copyright AniGaiku LLC (C) 2010-2011
##
# Setup Notes
#   - Seconds
#         Basic Table:
#           1 minute = 60 seconds
#           1 hour = 1 minute * 60 = 3600 seconds
#           1 day = 1 hour * 24 = 86400 seconds
#           1 week = 1 day * 7 = 604800 seconds
#   - Database
#           Do not use remote databases from free sites, please use either a
#           remote database from a personal hosted VPS or DEDI or a local
#           database. This will prevent any 'timeout' or 'invalid settings'
#           or 'cannot connect to database' issues. Thank you :)!
##

System:
  Permissions:
    Use:
      # Should a user have the 'iConomy.holdings' to use /money
      # By default this is false, so that people stop complaining that
      # iConomy doesn't work. Yes, people actually report that.
      # If you are one of those people, leave this false.
      Holdings: false

  Default:
    Currency:
      # Major is the first segment [Major].Minor

      # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
      Major: [ 'Koruna', 'Korun' ]

      # Minor (Major.[Minor]) 0.23 Coins  (With Seperate 0 Dollars, 23 Coins)
      Minor: [ 'Coin', 'Coins' ]

    Account:
      # Default account balance when created
      Holdings: 30.0

  # Controls how money is formatted through methods
  Formatting:
    # Minor allows you to use the Minor amounts for amounts <1
    # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
    Minor: false

    # Seperate allows your money to be shown in an alternative way,
    # instead of 1.32 it will show as 1 Dollar 23 Coins
    # !!! NOTICE: This only works if Minor is set to true !!!
    Seperate: false                               # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)

    # Single shows your money in another alternative way.
    # Instead of 1.23 Dollars you will see: 1 Dollar.
    # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
    # !!! Notice: This overrides seperate !!!
    Single: false

  # Logs all monetary transactions passed through iConomy
  Logging:
    Enabled: false

  # Purges Default Balances at Loading
  # Good way to keep unused accounts or default accounts wiped out and lower database usage.
  Purging:
    Enabled: false

  # Controls amount of money gained at a set interval.
  Interest:
    Enabled: false

    # Only give interest to players who are currently online?
    Online: true

    Announce:
      # Send a message when the player gains interest?
      Enabled: false

    Interval:
      #  Interval is done in seconds, here is a easy reference table for commonly set intervals:
      #   1 minute = 60 seconds
      #   1 hour = 1 minute * 60 = 3600 seconds
      #   1 day = 1 hour * 24 = 86400 seconds
      #   1 week = 1 day * 7 = 604800 seconds
      Seconds: 60

    Amount:
      # The balance to be met where we stop giving interest.
      # 0.0 for no limit
      Cutoff: 0.0

      # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
      Percent: 0.0

      # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
      # If the two numbers are different, it will be a random amount in-between the two.
      Maximum: 1
      Minimum: 2

  Database:
    # Databases Supported:
    # Flatfile, FF, mini, minidb
    #  - These all equate to miniDB
    ##
    # item, items, inventory, inventoryDB
    #  - These all equate to InventoryDB, which uses inventory for storage
    ##
    # xp, exp, orb, xpdb, expdb, orbdb
    #  - These all equate to ExperienceDB, which relies on Experience for balance.
    ##
    # mysql, mysqldb
    #  - These will attempt to connect to MySQL
    ##
    # sqlite, sqlite2, sqlite3, sqlitedb
    #  - These will attempt to create & connect to SQLite
    ##
    # postgre, postgreSQL, postgreDB
    #  - These will attempt to connect to PostgreSQL
    Type: 'mysql'
   
    # These are for InventoryDB only.
    #
    # InventoryDB is essentially Physical Money.
    #   It isn't logged in a database, its based on the users inventory
    #   and the two items selected below.
    #
    # MajorItem is the item or block ID of the major currency
    # MinorItem is the item or block ID of the minor currency
    # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
    MajorItem: 266
    MinorItem: 265

    # This controls the database name, by default it is iConomy
    Table: 'iConomy'

    # URL is for SQL Databases Only
    ##
    # Path to iConomy folder is easy, it's the COMPLETE path.
    # (Mine) G:\MineCraft\plugins\iConomy\
    # Won't be the same as yours, but it usually looks like that.
    ##
    # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
    # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
    ##
    # Binary Databases use ip:port style connections.
    # ip
    #  - is the connection identifier (internet protocol)
    #  - for ipv6 usually encased in brackets [::1]
    # port
    #  - the port that the database is listening on
    #  - defaults: 3306 for mysql, postgre is either 5740 or 5432
    ##
    # [MySQL Default] mysql://localhost:3306/iConomy
    # [Postgre Default] postgresql://localhost:5740/iConomy
    URL: 'mysql://localhost:3306/144363_mysql_db'

    # Login details for binary databases
    Username: '144363_mysql_db'
    Password: '*****'

    ##############################################################
    # !!! Conversion is not your database settings !!!
    ##############################################################
    # Conversion allows you to convert your old 5.x to the new 6.x
    # All is currently unused.
    ##############################################################
    # URL is for MySQL only, H2DB doesn't use it.
    ##############################################################
    Conversion:
      # Set to True, After converting, change this back to false!
      Enabled: false

      # Database Type, H2DB or MySQL
      Type: 'MySQL'

      # Database Table
      Table: 'iConomy'

      # Database URL without table at the end.
      URL: 'mysql://localhost:3306'

      # Username / Password
      # H2DB does not use this. MySQL Only.
      Username: '144363_mysql_db'
      Password: '*****'

      # Unused ATM.
      All: true

Sesrver log:
Spoiler: zobrazit

Kód: Vybrat vše

[22:31:32] [Server thread/INFO]: Starting minecraft server version 1.7.2
[22:31:32] [Server thread/INFO]: Loading properties
[22:31:32] [Server thread/INFO]: Default game type: SURVIVAL
[22:31:32] [Server thread/INFO]: Generating keypair
[22:31:32] [Server thread/INFO]: Starting Minecraft server on 93.91.250.144:27535
[22:31:33] [Server thread/INFO]: This server is running CraftBukkit version git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks (MC: 1.7.2) (Implementing API version 1.7.2-R0.4-SNAPSHOT)
[22:31:33] [Server thread/WARN]: Plugin `RPG_Items v3.3' uses the space-character (0x20) in its name `RPG Items' - this is discouraged
[22:31:33] [Thread-8/INFO]: ----- Bukkit Auto Updater -----
[22:31:33] [Thread-8/INFO]: It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
[22:31:33] [Thread-8/INFO]: If you would like to be kept informed about new Development Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'dev'.
[22:31:33] [Thread-8/INFO]: With that set, you will be told whenever a new version is available for download, so that you can always keep up to date and secure with the latest fixes.
[22:31:33] [Thread-8/INFO]: If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
[22:31:33] [Thread-8/INFO]: ----- ------------------- -----
[22:31:33] [Server thread/INFO]: [PermissionsEx] sql backend registered!
[22:31:33] [Server thread/INFO]: [PermissionsEx] file backend registered!
[22:31:33] [Server thread/INFO]: [MultiWorld] Loading MultiWorld v5.1.0
[22:31:33] [Server thread/INFO]: [SignColorz] Loading SignColorz v1.2
[22:31:33] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.0.0-DEV-2
[22:31:33] [Server thread/INFO]: [AlphaChest] Loading AlphaChest v1.16.0
[22:31:33] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v5.5.8
[22:31:33] [Server thread/INFO]: [FakaHedaMinequery] Loading FakaHedaMinequery v1.3
[22:31:33] [Server thread/INFO]: [mmSupernaturals] Loading mmSupernaturals v1.5
[22:31:33] [Server thread/INFO]: [Quests] Loading Quests v1.8.1
[22:31:33] [Server thread/INFO]: [mcore] Loading mcore v7.0.2
[22:31:33] [Server thread/INFO]: [Vault] Loading Vault v1.2.31-b411
[22:31:33] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.20.4
[22:31:33] [Server thread/INFO]: [PermissionsEx] Initializing sql backend
[22:31:33] [Server thread/INFO]: [PermissionsEx-SQL] Connecting to database "mysql://lion.fakaheda.eu:3306/144363_mysql_db"
[22:31:34] [Server thread/INFO]: [PermissionsEx-SQL] Successfully connected to database
[22:31:34] [Server thread/INFO]: [LogBlock] Loading LogBlock v1.80
[22:31:34] [Server thread/INFO]: [LogBlock] Connecting to 144363_mysql_db@jdbc:mysql://lion.fakaheda.eu:3306/144363_mysql_db?useUnicode=true&characterEncoding=utf-8...
[22:31:34] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.0.1
[22:31:34] [Server thread/INFO]: [VipSlot] Loading VipSlot v1.4
[22:31:34] [Server thread/INFO]: [dynmap] Loading dynmap v1.9.2-940
[22:31:34] [Server thread/INFO]: [dynmap] Mod Support API available
[22:31:34] [Server thread/INFO]: [RPGDrop] Loading RPGDrop v1.0
[22:31:34] [Server thread/INFO]: [RPG_Items] Loading RPG_Items v3.3
[22:31:34] [Server thread/INFO]: [AntiCheat] Loading AntiCheat v2.0.2
[22:31:34] [Server thread/INFO]: [iConomy] Loading iConomy v7.0
[22:31:34] [Server thread/INFO]: [SQLibrary] Loading SQLibrary v7.1
[22:31:34] [Server thread/INFO]: [Ticket-Man] Loading Ticket-Man v1.1
[22:31:34] [Server thread/INFO]: [GiftBox] Loading GiftBox v2.5
[22:31:34] [Server thread/INFO]: [HeadNamer] Loading HeadNamer v1.1
[22:31:34] [Server thread/INFO]: [OpenInv] Loading OpenInv v2.1.3
[22:31:34] [Server thread/INFO]: [ClearLag] Loading ClearLag v2.6.2
[22:31:34] [Server thread/INFO]: [SupplySign] Loading SupplySign v1.9.8
[22:31:34] [Server thread/INFO]: [Votifier] Loading Votifier v1.9
[22:31:34] [Server thread/INFO]: [AutoSaveWorld] Loading AutoSaveWorld v4.13
[22:31:34] [Server thread/INFO]: [MobArena] Loading MobArena v0.96.2
[22:31:34] [Server thread/INFO]: [GAListener] Loading GAListener v0.9
[22:31:34] [Server thread/INFO]: [Essentials] Loading Essentials vPre2.13.1.2
[22:31:34] [Server thread/INFO]: [Lift] Loading Lift v48
[22:31:34] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.11-SNAPSHOT (build 1053)
[22:31:34] [Server thread/INFO]: [Jobs] Loading Jobs v2.11.3
[22:31:34] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn vPre2.13.1.2
[22:31:34] [Server thread/INFO]: [MagicSigns] Loading MagicSigns v1.9.0
[22:31:34] [Server thread/INFO]: [ShoppingCart] Loading ShoppingCart v1.5.2
[22:31:34] [Server thread/INFO]: [Ultrabans] Loading Ultrabans v3.1.0
[22:31:34] [Server thread/INFO]: [OnlineSigns] Loading OnlineSigns v0.2.1
[22:31:34] [Server thread/INFO]: [LWC] Loading LWC v4.4.0 (b881) (July 11, 2013)
[22:31:34] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat vPre2.13.1.2
[22:31:34] [Server thread/INFO]: [Residence] Loading Residence v2.6.6.6
[22:31:34] [Server thread/INFO]: [ResidenceSigns] Loading ResidenceSigns v2.9
[22:31:34] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.7.5
[22:31:34] [Server thread/INFO]: [AuthMe] Loading AuthMe v3.3.2
[22:31:34] [Server thread/INFO]: [Factions] Loading Factions v2.3.0
[22:31:34] [Server thread/INFO]: [mcore] Enabling mcore v7.0.2
[22:31:34] [Server thread/INFO]: [mcore 7.0.2] === ENABLE START ===
[22:31:34] [Server thread/INFO]: [mcore 7.0.2] §eSetup of SenderIdMixinDefault took §d10§ems.
[22:31:34] [Server thread/INFO]: [mcore 7.0.2] === ENABLE §aCOMPLETE §e(Took §d94ms§e) ===
[22:31:34] [Server thread/INFO]: [Vault] Enabling Vault v1.2.31-b411
[22:31:34] [Server thread/INFO]: [Vault] [Vault][Economy] Essentials Economy found: Waiting
[22:31:34] [Server thread/WARN]: iConomy - If you are using Flatfile storage be aware that versions 6, 7 and 8 have a CRITICAL bug which can wipe ALL iconomy data.
[22:31:34] [Server thread/WARN]: if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
[22:31:34] [Server thread/WARN]: it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
[22:31:34] [Server thread/INFO]: [Vault] [Vault][Economy] iConomy 6 found: Waiting
[22:31:34] [Server thread/INFO]: [Vault] [Vault][Permission] PermissionsEx found: Waiting
[22:31:34] [Server thread/INFO]: [Vault] [Vault][Permission] SuperPermissions loaded as backup permission system.
[22:31:34] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx found: Waiting
[22:31:34] [Server thread/INFO]: [Vault] [Vault] Enabled Version 1.2.31-b411
[22:31:34] [Server thread/INFO]: [mcore 7.0.2] §aActivated §eintegration with §dVault
[22:31:34] [Server thread/INFO]: [AutoSaveWorld] Enabling AutoSaveWorld v4.13
[22:31:34] [Server thread/INFO]: [LWC] Enabling LWC v4.4.0 (b881) (July 11, 2013)
[22:31:34] [Server thread/INFO]: [LWC] Connecting to SQLite
[22:31:34] [Server thread/WARN]: java.lang.UnsatisfiedLinkError: /hlserver/27535/plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so: /hlserver/27535/plugins/LWC/lib/native/Linux/amd64/libsqlitejdbc.so: file too short
[22:31:34] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[22:31:34] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[22:31:34] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[22:31:34] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[22:31:34] [Server thread/INFO]: Preparing level "world"
[22:31:34] [Server thread/INFO]: Preparing start region for level 0 (Seed: 7289491877215377738)
[22:31:35] [Server thread/INFO]: Preparing spawn area: 81%
[22:31:35] [Server thread/INFO]: Preparing start region for level 1 (Seed: -7431102240312993339)
[22:31:36] [Server thread/INFO]: Preparing start region for level 2 (Seed: -7431102240312993339)
[22:31:36] [Server thread/INFO]: [MultiWorld] Enabling MultiWorld v5.1.0
[22:31:36] [Server thread/INFO]: Preparing start region for level 3 (Seed: -6802251249256491245)
[22:31:36] [Server thread/INFO]: Preparing start region for level 4 (Seed: 8458840438619712109)
[22:31:37] [Server thread/INFO]: worlds.MobArena
[22:31:37] [Server thread/INFO]: worlds.MobArenas
[22:31:37] [Server thread/INFO]: worlds.MobArenas1
[22:31:37] [Server thread/INFO]: worlds.epic
[22:31:37] [Server thread/INFO]: worlds.medieval
[22:31:37] [Server thread/INFO]: worlds.world
[22:31:37] [Server thread/INFO]: worlds.world1
[22:31:37] [Server thread/INFO]: worlds.world_nether
[22:31:37] [Server thread/INFO]: worlds.world_the_end
[22:31:37] [Server thread/INFO]: [MultiWorld] v5.1.0 enabled.
[22:31:37] [Server thread/INFO]: [SignColorz] Enabling SignColorz v1.2
[22:31:37] [Server thread/INFO]: [SignColorz] v1.2enabled!
[22:31:37] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.0.0-DEV-2
[22:31:37] [Server thread/INFO]: [PlugMan] Metrics started: http://mcstats.org/plugin/PlugMan
[22:31:38] [Server thread/INFO]: [PlugMan] No update was found.
[22:31:38] [Server thread/INFO]: [AlphaChest] Enabling AlphaChest v1.16.0
[22:31:38] [Server thread/INFO]: [AlphaChest] loaded 3 chests
[22:31:38] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v5.5.8
[22:31:38] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[22:31:38] [Server thread/INFO]: [FakaHedaMinequery] Enabling FakaHedaMinequery v1.3
[22:31:38] [Server thread/INFO]: Starting FakaHedaMinequery server on 93.91.250.144:28535
[22:31:38] [Server thread/INFO]: [mmSupernaturals] Enabling mmSupernaturals v1.5
[22:31:38] [Server thread/INFO]: [mmSupernaturals v1.5] mmSupernaturals version 1.5 enabled.
[22:31:38] [Server thread/WARN]: [mmSupernaturals v1.5] Can't create the directory for language files!!
[22:31:38] [Server thread/INFO]: [mmSupernaturals v1.5] Use language file: en.yml
[22:31:38] [Server thread/INFO]: [mmSupernaturals v1.5] Permission system not detected, defaulting to SuperPerms
[22:31:38] [Server thread/INFO]: [mmSupernaturals v1.5] A permissions system may be detected later, just wait.
[22:31:38] [Server thread/INFO]: [Quests] Enabling Quests v1.8.1
[22:31:38] [Server thread/INFO]: [Quests] Enabled.
[22:31:38] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.20.4
[22:31:38] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[22:31:38] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[22:31:38] [Server thread/INFO]: [Vault][Chat] PermissionsEx_Chat hooked.
[22:31:38] [Server thread/INFO]: [mmSupernaturals v1.5] Found PermissionsEx!
[22:31:38] [Server thread/INFO]: [LogBlock] Enabling LogBlock v1.80
[22:31:38] [Server thread/INFO]: Accepted EditSessionFactory of type de.diddiz.worldedit.LogBlockEditSessionFactory from de.diddiz.worldedit
[22:31:38] [Server thread/INFO]: [LogBlock] Scheduled consumer with bukkit scheduler.
[22:31:38] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.0.1
[22:31:38] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-MyCommand-=-=-=-=-=-=-=-=-=-=-=-=
[22:31:38] [Server thread/INFO]: = Vault  : Ok. Hooked MyCommand Vault 1.2.31-b411
[22:31:38] [Server thread/INFO]: = Spout  : Not detected. Disabling spout feature.
[22:31:38] [Server thread/INFO]: = BarAPI : Not detected.
[22:31:38] [Server thread/ERROR]: Cannot load plugins/MyCommand/language.yml
org.bukkit.configuration.InvalidConfigurationException: unacceptable character '�' (0xFFFD) special characters are not allowed
in "<string>", position 980
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:149) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:114) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:176) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at it.mri.mycommand.SetConfig.checkConfig(SetConfig.java:109) [MyCommand.jar:?]
   at it.mri.mycommand.Main.onEnable(Main.java:163) [MyCommand.jar:?]
   at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:250) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:324) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:404) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.loadPlugin(CraftServer.java:439) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.enablePlugins(CraftServer.java:375) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.m(MinecraftServer.java:342) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.g(MinecraftServer.java:319) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.a(MinecraftServer.java:275) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.DedicatedServer.init(DedicatedServer.java:175) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.run(MinecraftServer.java:424) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.ThreadServerApplication.run(SourceFile:617) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
Caused by: org.yaml.snakeyaml.reader.ReaderException: special characters are not allowed
   at org.yaml.snakeyaml.reader.StreamReader.checkPrintable(StreamReader.java:70) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.yaml.snakeyaml.reader.StreamReader.<init>(StreamReader.java:50) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.yaml.snakeyaml.Yaml.load(Yaml.java:399) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:53) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   ... 16 more
[22:31:38] [Server thread/INFO]: = An error occurred on language.yml file
[22:31:38] [Server thread/INFO]: = Config : Ok |
[22:31:38] [Server thread/INFO]: = Custom commands loaded : 30
[22:31:38] [Server thread/INFO]: = Version: 5.0.1
[22:31:38] [Server thread/INFO]: = Author : MRI a.k.a Ivanpro
[22:31:38] [Server thread/INFO]: = Status : Active
[22:31:38] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[22:31:38] [Server thread/INFO]: [VipSlot] Enabling VipSlot v1.4
[22:31:38] [Server thread/INFO]: [VipSlot] Plugin activated
[22:31:38] [Server thread/INFO]: [dynmap] Enabling dynmap v1.9.2-940
[22:31:38] [Server thread/INFO]: [dynmap] Added 38 custom biome mappings
[22:31:38] [Server thread/INFO]: [dynmap] Using PermissionsEx 1.20.4 for access control
[22:31:39] [Server thread/INFO]: [dynmap] Mod Support processing completed
[22:31:39] [Server thread/INFO]: [dynmap] Loaded 22 shaders.
[22:31:39] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[22:31:39] [Server thread/INFO]: [dynmap] Loaded 12 lightings.
[22:31:40] [Server thread/INFO]: [dynmap] Web server started on address 93.91.250.144:29535
[22:31:40] [Server thread/INFO]: [dynmap] version 1.9.2-940 is enabled - core version 1.9.2-1888
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'.
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 2 pending tile renders for world 'world'
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_nether'.
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_the_end'.
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'epic'.
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 22 pending tile renders for world 'epic'
[22:31:40] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'medieval'.
[22:31:40] [Server thread/INFO]: [dynmap] Enabled
[22:31:40] [Server thread/INFO]: [RPGDrop] Enabling RPGDrop v1.0
[22:31:40] [Server thread/INFO]: Hooked up to vault! Economy enable!
[22:31:40] [Server thread/INFO]: Heroes Not Found Disable Heroes EXP support
[22:31:40] [Server thread/INFO]: RPGDrop has been enabled!
[22:31:40] [Server thread/INFO]: [RPG_Items] Enabling RPG_Items v3.3
[22:31:40] [Server thread/INFO]: [AntiCheat] Enabling AntiCheat v2.0.2
[22:31:40] [Server thread/INFO]: [iConomy] Enabling iConomy v7.0
[22:31:40] [Server thread/INFO]: [iConomy - April Fools] Enabled (23 ms)
[22:31:40] [Server thread/INFO]: [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
[22:31:40] [Server thread/INFO]: [Vault][Economy] iConomy 7 hooked.
[22:31:40] [Server thread/INFO]: [SQLibrary] Enabling SQLibrary v7.1
[22:31:40] [Server thread/INFO]: SQLibrary loaded.
[22:31:40] [Server thread/INFO]: [Ticket-Man] Enabling Ticket-Man v1.1
[22:31:40] [Server thread/INFO]: Database setup!
[22:31:40] [Server thread/INFO]: [Ticketman] has been Enabled!
[22:31:40] [Server thread/INFO]: [GiftBox] Enabling GiftBox v2.5
[22:31:40] [Server thread/INFO]: [HeadNamer] Enabling HeadNamer v1.1
[22:31:40] [Server thread/INFO]: [OpenInv] Enabling OpenInv v2.1.3
[22:31:40] [Server thread/INFO]: [ClearLag] Enabling ClearLag v2.6.2
[22:31:40] [Server thread/ERROR]: Cannot load plugins/ClearLag/config.yml
org.bukkit.configuration.InvalidConfigurationException: unacceptable character '�' (0xFFFD) special characters are not allowed
in "<string>", position 4600
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:149) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:114) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:176) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:150) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPlugin.getConfig(JavaPlugin.java:144) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at me.minebuilders.clearlag.Clearlag.onEnable(Clearlag.java:67) [Clearlag.jar:?]
   at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:250) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:324) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:404) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.loadPlugin(CraftServer.java:439) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.enablePlugins(CraftServer.java:375) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.m(MinecraftServer.java:342) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.g(MinecraftServer.java:319) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.a(MinecraftServer.java:275) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.DedicatedServer.init(DedicatedServer.java:175) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.run(MinecraftServer.java:424) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.ThreadServerApplication.run(SourceFile:617) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
Caused by: org.yaml.snakeyaml.reader.ReaderException: special characters are not allowed
   at org.yaml.snakeyaml.reader.StreamReader.checkPrintable(StreamReader.java:70) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.yaml.snakeyaml.reader.StreamReader.<init>(StreamReader.java:50) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.yaml.snakeyaml.Yaml.load(Yaml.java:399) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:53) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   ... 17 more
[22:31:40] [Server thread/INFO]: [ClearLag] No config updates found...
[22:31:40] [Thread-33/INFO]: [ClearLag] Searching for updates..
[22:31:40] [Server thread/ERROR]: Cannot load plugins/ClearLag/config.yml
org.bukkit.configuration.InvalidConfigurationException: unacceptable character '�' (0xFFFD) special characters are not allowed
in "<string>", position 4600
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:149) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:114) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:176) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:150) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at me.minebuilders.clearlag.managers.PluginManager.reloadConfiguration(PluginManager.java:43) [Clearlag.jar:?]
   at me.minebuilders.clearlag.managers.PluginManager.<init>(PluginManager.java:34) [Clearlag.jar:?]
   at me.minebuilders.clearlag.Clearlag.onEnable(Clearlag.java:74) [Clearlag.jar:?]
   at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:250) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:324) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:404) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.loadPlugin(CraftServer.java:439) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.enablePlugins(CraftServer.java:375) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.m(MinecraftServer.java:342) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.g(MinecraftServer.java:319) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.a(MinecraftServer.java:275) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.DedicatedServer.init(DedicatedServer.java:175) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.run(MinecraftServer.java:424) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.ThreadServerApplication.run(SourceFile:617) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
Caused by: org.yaml.snakeyaml.reader.ReaderException: special characters are not allowed
   at org.yaml.snakeyaml.reader.StreamReader.checkPrintable(StreamReader.java:70) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.yaml.snakeyaml.reader.StreamReader.<init>(StreamReader.java:50) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.yaml.snakeyaml.Yaml.load(Yaml.java:399) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:53) ~[minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   ... 18 more
[22:31:40] [Server thread/INFO]: [ClearLag] Clearlag has been enabled!
[22:31:40] [Server thread/INFO]: [SupplySign] Enabling SupplySign v1.9.8
[22:31:40] [Server thread/INFO]: SupplySign: ShowErrorsInClient=true
[22:31:40] [Server thread/INFO]: SupplySign: FixSignOnSignGlitch=SupplySignOnly
[22:31:40] [Server thread/INFO]: SupplySign: AllowNonOpAccess=false
[22:31:41] [Server thread/INFO]: SupplySign loaded 975 items.
[22:31:41] [Server thread/INFO]: SupplySign loaded 16 kits from kits.yml.
[22:31:41] [Server thread/INFO]: SupplySign version 1.9.8 is enabled!
[22:31:41] [Server thread/INFO]: [Votifier] Enabling Votifier v1.9
[22:31:41] [Server thread/WARN]: [Votifier] No listeners loaded! Cannot find listener directory 'plugins/Votifier/listeners'
[22:31:41] [Server thread/ERROR]: [Votifier] Error initializing vote receiver. Please verify that the configured
[22:31:41] [Server thread/ERROR]: [Votifier] IP address and port are not already in use. This is a common problem
[22:31:41] [Server thread/ERROR]: [Votifier] with hosting services and, if so, you should check with your hosting provider.
java.net.BindException: Address already in use
   at java.net.PlainSocketImpl.socketBind(Native Method) ~[?:1.7.0_40]
   at java.net.AbstractPlainSocketImpl.bind(AbstractPlainSocketImpl.java:376) ~[?:1.7.0_40]
   at java.net.ServerSocket.bind(ServerSocket.java:376) ~[?:1.7.0_40]
   at java.net.ServerSocket.bind(ServerSocket.java:330) ~[?:1.7.0_40]
   at com.vexsoftware.votifier.net.VoteReceiver.initialize(VoteReceiver.java:81) [Votifier.jar:?]
   at com.vexsoftware.votifier.net.VoteReceiver.<init>(VoteReceiver.java:75) [Votifier.jar:?]
   at com.vexsoftware.votifier.Votifier.onEnable(Votifier.java:172) [Votifier.jar:?]
   at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:250) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:324) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:404) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.loadPlugin(CraftServer.java:439) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at org.bukkit.craftbukkit.v1_7_R1.CraftServer.enablePlugins(CraftServer.java:375) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.m(MinecraftServer.java:342) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.g(MinecraftServer.java:319) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.a(MinecraftServer.java:275) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.DedicatedServer.init(DedicatedServer.java:175) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.MinecraftServer.run(MinecraftServer.java:424) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
   at net.minecraft.server.v1_7_R1.ThreadServerApplication.run(SourceFile:617) [minecraft_server.jar:git-Bukkit-1.7.2-R0.3-2-g85f5776-b3023jnks]
[22:31:41] [Server thread/ERROR]: [Votifier] Votifier did not initialize properly!
[22:31:41] [Server thread/INFO]: [MobArena] Enabling MobArena v0.96.2
[22:31:41] [Server thread/INFO]: [MobArena] Vault found; economy rewards enabled.
[22:31:41] [Server thread/INFO]: [MobArena] Loaded arena 'default'
[22:31:41] [Server thread/INFO]: [MobArena] v0.96.2 enabled.
[22:31:41] [Server thread/INFO]: [GAListener] Enabling GAListener v0.9
[22:31:41] [Server thread/INFO]: [GAListener] GAListener v0.9 Enabled
[22:31:41] [Server thread/INFO]: [Essentials] Enabling Essentials vPre2.13.1.2
[22:31:41] [Thread-33/INFO]: [ClearLag] No updates found!
[22:31:41] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[22:31:41] [Server thread/INFO]: Essentials: Using PermissionsEx based permissions.
[22:31:41] [Server thread/INFO]: [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.31-b411)
[22:31:41] [Server thread/INFO]: [Lift] Enabling Lift v48
[22:31:41] [Server thread/INFO]: Lift v48 is now enabled!
[22:31:41] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.11-SNAPSHOT (build 1053)
[22:31:41] [Server thread/INFO]: [Jobs] Enabling Jobs v2.11.3
[22:31:41] [Jobs-DatabaseSaveTask/INFO]: [Jobs] Started database save task
[22:31:41] [Jobs-BufferedPaymentThread/INFO]: [Jobs] Started buffered payment thread
[22:31:41] [Server thread/INFO]: [Jobs] Plugin has been enabled succesfully.
[22:31:41] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn vPre2.13.1.2
[22:31:41] [Server thread/INFO]: [MagicSigns] Enabling MagicSigns v1.9.0
[22:31:41] [Server thread/INFO]: [MagicSigns] Using Vault for economy.
[22:31:41] [Server thread/INFO]: [MagicSigns] Using Vault for permissions.
[22:31:41] [Server thread/INFO]: [ShoppingCart] Enabling ShoppingCart v1.5.2
[22:31:41] [Server thread/INFO]: [ShoppingCart] Connecting to database...
[22:31:41] [Server thread/INFO]: [ShoppingCart] Connected to database
[22:31:41] [Server thread/INFO]: [ShoppingCart] Using PermissionsEx
[22:31:41] [Server thread/INFO]: [ShoppingCart] Using iConomy 7
[22:31:41] [Server thread/INFO]: [Ultrabans] Enabling Ultrabans v3.1.0
[22:31:42] [Server thread/INFO]: [Ultrabans] No Updates found on dev.bukkit.org.
[22:31:42] [Server thread/INFO]: [Ultrabans] Loaded. 0 secs.
[22:31:42] [Server thread/INFO]: [OnlineSigns] Enabling OnlineSigns v0.2.1
[22:31:42] [Server thread/INFO]: [OnlineSigns] [OnlineSigns] PermissionsEx found.
[22:31:42] [Server thread/INFO]: [OnlineSigns] [OnlineSigns] version 0.2.1 loaded.
[22:31:42] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat vPre2.13.1.2
[22:31:42] [Server thread/INFO]: [Residence] Enabling Residence v2.6.6.6
[22:31:42] [Server thread/INFO]: [Residence] Found Vault using permissions plugin:PermissionsEx
[22:31:42] [Server thread/INFO]: [Residence] Scanning for economy systems...
[22:31:42] [Server thread/INFO]: [Residence] Found Vault using economy system: iConomy 7
[22:31:42] [Server thread/INFO]: [Residence] Found WorldEdit
[22:31:42] [Server thread/INFO]: [Residence] Enabled! Version 2.6.6.6 by bekvon
[22:31:42] [Server thread/INFO]: [ResidenceSigns] Enabling ResidenceSigns v2.9
[22:31:42] [Server thread/INFO]: [ResidenceSigns] Successfully Enabled.
[22:31:42] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.7.5
[22:31:42] [Server thread/INFO]: [ChestShop] LWC version 4.4.0 (b881) (July 11, 2013) loaded.
[22:31:42] [Server thread/INFO]: [ChestShop] Residence version 2.6.6.6 loaded.
[22:31:42] [Server thread/INFO]: [ChestShop] Vault loaded! Found an economy plugin!
[22:31:42] [Server thread/INFO]: [AuthMe] Enabling AuthMe v3.3.2
[22:31:42] [Server thread/INFO]: [AuthMe] Loading Configuration File...
[22:31:42] [Server thread/WARN]: [AuthMe] Merge new Config Options if needed..
[22:31:42] [Server thread/WARN]: [AuthMe] Please check your config.yml file!
[22:31:42] [Server thread/INFO]: [AuthMe] Set Language: en
[22:31:43] [Server thread/INFO]: [AuthMe] Vault plugin detected, hook with PermissionsEx system
[22:31:43] [Server thread/INFO]: [AuthMe] Hook with Essentials plugin
[22:31:43] [Server thread/INFO]: [AuthMe] Hook with EssentialsSpawn plugin
[22:31:43] [Thread-36/INFO]: [AuthMe] MySQL driver loaded
[22:31:43] [Thread-36/INFO]: [AuthMe] Connection pool ready
[22:31:43] [Server thread/INFO]: [AuthMe]  This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com
[22:31:43] [Server thread/INFO]: [AuthMe] Authme 3.3.2 enabled
[22:31:43] [Server thread/INFO]: [Factions] Enabling Factions v2.3.0
[22:31:43] [Server thread/INFO]: [Factions 2.3.0] === ENABLE START ===
[22:31:43] [Server thread/INFO]: [Factions 2.3.0] Activated integration with LWC
[22:31:43] [Server thread/INFO]: [Factions 2.3.0] === ENABLE COMPLETE (Took 558ms) ===
[22:31:44] [Server thread/INFO]: Done (9.347s)! For help, type "help" or "?"
[22:31:44] [Server thread/INFO]: Starting GS4 status listener
[22:31:44] [Server thread/INFO]: Starting remote control listener
[22:31:44] [Query Listener #1/INFO]: Query running on 93.91.250.144:27535
[22:31:44] [RCON Listener #2/INFO]: RCON running on 93.91.250.144:26535
[22:31:44] [Server thread/INFO]: [Jobs] [Jobs] Successfully linked with Vault.
[22:31:44] [Server thread/INFO]: [Citizens] Loaded 28 NPCs.
[22:31:44] [pool-3-thread-1/INFO]: [LWC] [LWC] The updater ran into a minor issue: http://update.griefcraft.com/lwc/branch/stable/LATEST
[22:31:44] [pool-3-thread-1/INFO]: [LWC] [LWC] This can probably be ignored.
[22:31:44] [pool-3-thread-1/WARN]: Exception in thread "pool-3-thread-1"
[22:31:44] [pool-3-thread-1/WARN]: org.apache.commons.lang.UnhandledException: Plugin LWC v4.4.0 (b881) (July 11, 2013) generated an exception while executing task 9
   at org.bukkit.craftbukkit.v1_7_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:56)
   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
   at java.lang.Thread.run(Thread.java:724)
Caused by: java.lang.NullPointerException
   at com.griefcraft.util.Updater$1.run(Updater.java:81)
   at org.bukkit.craftbukkit.v1_7_R1.scheduler.CraftTask.run(CraftTask.java:53)
   at org.bukkit.craftbukkit.v1_7_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:53)
   ... 3 more

[22:31:44] [pool-3-thread-21/INFO]: [Vault] Checking for Updates:
[22:31:44] [pool-3-thread-21/INFO]: [Vault] No new version available
[22:31:44] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[22:31:45] [Server thread/INFO]: [Quests] 4 Quest(s) loaded.
[22:31:45] [Server thread/INFO]: [Quests] 5 Event(s) loaded.
[22:31:59] [Server thread/INFO]: DarwyCz[/88.103.198.138:50650] logged in with entity id 1169 at ([epic] 856.0372440064369, 88.0, 536.1930642220054)
[22:31:59] [Server thread/WARN]: [RPG_Items] Failed to get player locale
[22:31:59] [Server thread/INFO]: [Ultrabans] Logged DarwyCz connecting from ip:88.103.198.138
[22:31:59] [Server thread/INFO]: Angel DarwyCz has joined the server.
[22:32:04] [Server thread/INFO]: [AuthMe] DarwyCz logged in!
[22:32:06] [Server thread/INFO]: DarwyCz issued server command: /pl

Delší log... :D
Za každou radu jsem velice rád.
Stačí se připojit: 93.91.250.144:27535 :D

Uživatelský avatar
Lico88weaK
Příspěvky: 172
Věk: 27
Registrován: 10 úno 2014, 15:33
Reputation: 0
Bydliště: Neee řeknu.

Re: Problém iConomy

#2 Příspěvekod Lico88weaK » 10 bře 2014, 23:43

Já jsem Iconomy nenapojoval na databázi a funguje normálně :D
Majitel jednoho z nejslavnějších MC serverů Sector Wars


___________________________________________________________________________

ZutroCz
Příspěvky: 13
Registrován: 09 dub 2012, 18:13
Reputation: 0
Kontaktovat uživatele:

Re: Problém iConomy

#3 Příspěvekod ZutroCz » 10 bře 2014, 23:44

No tak to se neboj, ono to přijde. A budeš se divit až se hráčům resetnou peníze. ;) :D
Stačí se připojit: 93.91.250.144:27535 :D

Uživatelský avatar
Lico88weaK
Příspěvky: 172
Věk: 27
Registrován: 10 úno 2014, 15:33
Reputation: 0
Bydliště: Neee řeknu.

Re: Problém iConomy

#4 Příspěvekod Lico88weaK » 10 bře 2014, 23:48

Právě že po připojení na mysql to může házet chyby , tím že napojis pluginy na databázi jen zmírníš lagy na serveru. :)
Majitel jednoho z nejslavnějších MC serverů Sector Wars


___________________________________________________________________________

ZutroCz
Příspěvky: 13
Registrován: 09 dub 2012, 18:13
Reputation: 0
Kontaktovat uživatele:

Re: Problém iConomy

#5 Příspěvekod ZutroCz » 10 bře 2014, 23:58

To by mě zajímalo jaké chyby. Databáze ti krásně schová "údaje". Kdežto soubor ve složce plugins/iConomy je dost v ohrožení. Pár restartů, nebo pádů a bude tu další téma: Lidé si stěžují, že jim zmizeli peníze. Jak dlouho pracuješ s MySQL databází? O.o
Stačí se připojit: 93.91.250.144:27535 :D

TheLugi_CZ
Příspěvky: 23
Registrován: 12 bře 2014, 00:21
Reputation: 0

Re: Problém iConomy

#6 Příspěvekod TheLugi_CZ » 12 bře 2014, 00:23

Použij plugin Fe - iComomy měl sem stejný problem a toto ho vyřešilo
Obrázek

ZutroCz
Příspěvky: 13
Registrován: 09 dub 2012, 18:13
Reputation: 0
Kontaktovat uživatele:

Re: Problém iConomy

#7 Příspěvekod ZutroCz » 12 bře 2014, 00:51

Problém byl u databáze. Mám plugin a webshop, který jsem koupil a udělal jsem v tom takový bordel. V konsoli psalo

Kód: Vybrat vše

[iConomy] Error issueing SQL query: java.sql.SQLException: Field 'realmoney' doesn't have a default value Query: INSERT INTO iConomy(username, balance, status) values (?, ?, ?) Parameters: [teavg, 30.0, 0]


Tak jsem dal výchozí u realmoney a bank v iConomy na 0 a v pohodě to jede.

Můžete LOCK.

//LOCK
Stačí se připojit: 93.91.250.144:27535 :D


Zpět na „Minecraft, Tekkit“

Kdo je online

Uživatelé prohlížející si toto fórum: Žádní registrovaní uživatelé a 31 hostů