Konvertovanie iConomy na MySQL

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
Uživatelský avatar
King_of_KeKs
Příspěvky: 155
Věk: 27
Registrován: 08 kvě 2012, 16:59
Reputation: 0
Bydliště: Bratislava, Slovakia
Kontaktovat uživatele:

Konvertovanie iConomy na MySQL

#1 Příspěvekod King_of_KeKs » 13 kvě 2013, 18:41

DarkSwamp Survival: 93.91.240.156:37260
DarkSwamp SurvivalGames: 93.91.240.158:37175


Dobrý deň,
chcel by som sa spýtať prečo mi to pri týchto nastaveniach nechce konvertovať údaje z .mini na MySQL? Snažil som sa všetko nastaviť podľa návodov a topicov na forku, ale po reštarte servera mi vytvorí v MySQL iba prázdnu tabulku.

Config:
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: [ 'Dollar', 'Dollars' ]

      # 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: true

  # 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/gs_37260_1'

    # Login details for binary databases
    Username: 'gs_37260_1'
    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: true

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

      # Database Table
      Table: 'iConomy'

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

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

      # Unused ATM.
      All: true


Ďakujem vopred :)
Obrázek
ObrázekObrázek

Uživatelský avatar
nejento
Příspěvky: 9815
Registrován: 28 lis 2011, 14:09
Reputation: 55
Kontaktovat uživatele:

Re: Konvertovanie iConomy na MySQL

#2 Příspěvekod nejento » 13 kvě 2013, 21:50

server.log při startu se zapnutou konverzí.
Případně zkus ještě vyplnit localhost v mysql://localhost:3306/gs_37260_1 na název serveru.
Obrázek

Obrázek Přidejte se ke komunitě zákazníků na FakaHeda.eu Discord! Poznejte nové lidi nebo vyřešte svůj technický problém živě: https://discord.fakaheda.eu/

Uživatelský avatar
King_of_KeKs
Příspěvky: 155
Věk: 27
Registrován: 08 kvě 2012, 16:59
Reputation: 0
Bydliště: Bratislava, Slovakia
Kontaktovat uživatele:

Re: Konvertovanie iConomy na MySQL

#3 Příspěvekod King_of_KeKs » 15 kvě 2013, 00:54

Skúsil som to zmeniť na mysql://zulu.fakaheda:3306/gs_37260_1 ale stále nič :|
Server.log:
Spoiler: zobrazit

Kód: Vybrat vše

2013-05-15 00:50:27 [INFO] Starting minecraft server version 1.5.2
2013-05-15 00:50:27 [INFO] Loading properties
2013-05-15 00:50:27 [INFO] Default game type: SURVIVAL
2013-05-15 00:50:27 [INFO] Generating keypair
2013-05-15 00:50:27 [INFO] Starting Minecraft server on 93.91.240.156:37260
2013-05-15 00:50:27 [INFO] This server is running CraftBukkit version git-Bukkit-1.5.2-R0.1-1-g53734d2-b2774jnks (MC: 1.5.2) (Implementing API version 1.5.2-R0.2-SNAPSHOT)
2013-05-15 00:50:27 [INFO] ----- Bukkit Auto Updater -----
2013-05-15 00:50:27 [INFO] It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
2013-05-15 00:50:27 [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'.
2013-05-15 00:50:27 [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.
2013-05-15 00:50:27 [INFO] If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
2013-05-15 00:50:27 [INFO] ----- ------------------- -----
2013-05-15 00:50:27 [INFO] [PermissionsEx] sql backend registered!
2013-05-15 00:50:27 [INFO] [PermissionsEx] file backend registered!
2013-05-15 00:50:27 [INFO] [PermissionsEx] PermissionEx plugin initialized.
2013-05-15 00:50:28 [INFO] [LagMeter] Loading LagMeter v1.13.0
2013-05-15 00:50:28 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.2
2013-05-15 00:50:28 [INFO] [WorldEdit] Loading WorldEdit v5.5.6
2013-05-15 00:50:28 [INFO] [NoCheatPlus] Loading NoCheatPlus v3.9.1-RC2-b510
2013-05-15 00:50:28 [INFO] [SimpleFly] Loading SimpleFly v1.4.6b
2013-05-15 00:50:28 [INFO] [CustomServerMessages] Loading CustomServerMessages v3.1.7
2013-05-15 00:50:28 [INFO] [NoWither] Loading NoWither v1.2
2013-05-15 00:50:28 [INFO] [Vault] Loading Vault v1.2.25-b320
2013-05-15 00:50:28 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.5
2013-05-15 00:50:28 [INFO] [PermissionsEx] Initializing file backend
2013-05-15 00:50:28 [INFO] Permissions file successfully reloaded
2013-05-15 00:50:28 [INFO] [Multiverse-Core] Loading Multiverse-Core v2.5-b665
2013-05-15 00:50:28 [INFO] [DynColor] Loading DynColor v1.1
2013-05-15 00:50:28 [INFO] [WorldGuard] Loading WorldGuard v5.7.3
2013-05-15 00:50:28 [INFO] [dynmap] Loading dynmap v1.6-646
2013-05-15 00:50:28 [INFO] [HeroicDeathPlus] Loading HeroicDeathPlus v2.1
2013-05-15 00:50:28 [INFO] [iConomy] Loading iConomy v7.0
2013-05-15 00:50:28 [INFO] [HawkEye] Loading HawkEye v1.1.0
2013-05-15 00:50:28 [INFO] [Trampoline] Loading Trampoline v1.0
2013-05-15 00:50:28 [INFO] [OpenInv] Loading OpenInv v2.0.2
2013-05-15 00:50:28 [INFO] [Modifyworld] Loading Modifyworld v1.19.4
2013-05-15 00:50:28 [INFO] [TheEndAgain] Loading TheEndAgain v1.01
2013-05-15 00:50:28 [INFO] [FalseBookCore] Loading FalseBookCore v0.93.1alpha
2013-05-15 00:50:28 [INFO] [DoubleXP] Loading DoubleXP v1.4.2
2013-05-15 00:50:28 [INFO] [WeatherMan] Loading WeatherMan v0.5.2
2013-05-15 00:50:28 [INFO] [MobArena] Loading MobArena v0.94.4.98
2013-05-15 00:50:28 [INFO] [AutoAnnouncer] Loading AutoAnnouncer v1.7-03.23
2013-05-15 00:50:28 [INFO] [Essentials] Loading Essentials vPre2.11.1.2
2013-05-15 00:50:28 [INFO] [Jobs] Loading Jobs v2.11.0
2013-05-15 00:50:28 [INFO] [ChatManager] Loading ChatManager v1.19.1
2013-05-15 00:50:28 [INFO] [FalseBookBlock] Loading FalseBookBlock v0.93.1alpha
2013-05-15 00:50:28 [INFO] [EssentialsSpawn] Loading EssentialsSpawn vPre2.11.1.2
2013-05-15 00:50:28 [INFO] [Multiverse-Inventories] Loading Multiverse-Inventories v2.5-b335
2013-05-15 00:50:28 [INFO] [VirtualPack] Loading VirtualPack v2.5.1
2013-05-15 00:50:28 [INFO] [CreativeGates] Loading CreativeGates v1.4
2013-05-15 00:50:28 [INFO] [Ultrabans] Loading Ultrabans v3.1.0
2013-05-15 00:50:28 [INFO] [LWC] Loading LWC v4.3.2 (b858-git-MANUAL) (March 16, 2013)
2013-05-15 00:50:28 [INFO] [EssentialsChat] Loading EssentialsChat vPre2.11.1.2
2013-05-15 00:50:28 [INFO] [Residence] Loading Residence v2.6.6.4
2013-05-15 00:50:28 [INFO] [ResidenceSigns] Loading ResidenceSigns v2.9
2013-05-15 00:50:28 [INFO] [RideThaDragon] Loading RideThaDragon v5.2.3
2013-05-15 00:50:28 [INFO] [ChestShop] Loading ChestShop v3.5
2013-05-15 00:50:28 [INFO] [dynmap-residence] Loading dynmap-residence v0.40
2013-05-15 00:50:28 [INFO] [AuthMe] Loading AuthMe v2.7.16
2013-05-15 00:50:28 [INFO] [Vault] Enabling Vault v1.2.25-b320
2013-05-15 00:50:28 [INFO] [Vault][Economy] Essentials Economy found: Waiting
2013-05-15 00:50:28 [WARNING] 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.
2013-05-15 00:50:28 [WARNING] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
2013-05-15 00:50:28 [WARNING] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
2013-05-15 00:50:28 [INFO] [Vault][Economy] iConomy 6 found: Waiting
2013-05-15 00:50:28 [INFO] [Vault][Permission] PermissionsEx found: Waiting
2013-05-15 00:50:28 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
2013-05-15 00:50:28 [INFO] [Vault][Chat] PermissionsEx found: Waiting
2013-05-15 00:50:28 [INFO] [Vault] Enabled Version 1.2.25-b320
2013-05-15 00:50:28 [INFO] [Vault][Economy] Essentials Economy hooked.
2013-05-15 00:50:28 [INFO] [Vault][Economy] iConomy 7 hooked.
2013-05-15 00:50:28 [INFO] [Vault][Permission] PermissionsEx hooked.
2013-05-15 00:50:28 [INFO] [LWC] Enabling LWC v4.3.2 (b858-git-MANUAL) (March 16, 2013)
2013-05-15 00:50:28 [INFO] [LWC] Connecting to SQLite
2013-05-15 00:50:28 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
2013-05-15 00:50:28 [WARNING] The server will make no attempt to authenticate usernames. Beware.
2013-05-15 00:50:28 [WARNING] 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.
2013-05-15 00:50:28 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
2013-05-15 00:50:28 [INFO] Preparing level "world"
2013-05-15 00:50:28 [INFO] Preparing start region for level 0 (Seed: 5651183997138995683)
2013-05-15 00:50:29 [INFO] Preparing start region for level 1 (Seed: 3672766685907383513)
2013-05-15 00:50:29 [INFO] Preparing start region for level 2 (Seed: -7047274808752561870)
2013-05-15 00:50:29 [INFO] [LagMeter] Enabling LagMeter v1.13.0
2013-05-15 00:50:29 [INFO] [LagMeter] Not using logs folder.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] Enabled! Polling every 40 server ticks. Logging to /hlserver/37260/plugins/LagMeter/lag.log.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] Chunks loaded:
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] World "world": 625.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] World "world_nether": 625.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] World "world_the_end": 625.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] Total chunks loaded: 1875
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] Entities:
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] World "world": 138.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] World "world_nether": 499.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] World "world_the_end": 422.
2013-05-15 00:50:29 [INFO] [LagMeter 1.13.0] Total entities: 1059
2013-05-15 00:50:29 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.2
2013-05-15 00:50:29 [INFO] Starting FakaHedaMinequery server on 93.91.240.156:38260
2013-05-15 00:50:29 [INFO] [WorldEdit] Enabling WorldEdit v5.5.6
2013-05-15 00:50:29 [INFO] WEPIF: Using the Bukkit Permissions API.
2013-05-15 00:50:29 [INFO] [NoCheatPlus] Enabling NoCheatPlus v3.9.1-RC2-b510
2013-05-15 00:50:29 [INFO] [NoCheatPlus] McAccess set to: 1.5.2 / CB2763-DEV
2013-05-15 00:50:29 [INFO] [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
2013-05-15 00:50:29 [INFO] [NoCheatPlus] Version 3.9.1-RC2-b510 is enabled.
2013-05-15 00:50:30 [INFO] [SimpleFly] Enabling SimpleFly v1.4.6b
2013-05-15 00:50:30 [INFO] [SimpleFly] Properties loaded.
2013-05-15 00:50:30 [INFO] [CustomServerMessages] Enabling CustomServerMessages v3.1.7
2013-05-15 00:50:30 [INFO] [CustomServerMessages] CustomServerMessages succesfully enabled.
2013-05-15 00:50:30 [INFO] [NoWither] Enabling NoWither v1.2
2013-05-15 00:50:30 [INFO] [NoWither] NoWither has been enabled.
2013-05-15 00:50:30 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.5
2013-05-15 00:50:30 [INFO] [PermissionsEx] Superperms support enabled.
2013-05-15 00:50:30 [INFO] [PermissionsEx] v1.19.5 enabled
2013-05-15 00:50:30 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
2013-05-15 00:50:30 [INFO] [Vault][Chat] PermissionsEx_Chat hooked.
2013-05-15 00:50:30 [INFO] [Multiverse-Core] Enabling Multiverse-Core v2.5-b665
2013-05-15 00:50:30 [INFO] [Multiverse-Core] [AllPay] - Version 13.0 - hooked into iConomy 6 for Multiverse-Core v2.5-b665
2013-05-15 00:50:30 [INFO] Preparing start region for level 3 (Seed: -2317396084306833102)
2013-05-15 00:50:31 [INFO] Preparing start region for level 4 (Seed: 4126914572074630137)
2013-05-15 00:50:32 [WARNING] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: keks_events
2013-05-15 00:50:32 [WARNING] [Multiverse-Core] Use '/mv remove' to remove it from the config!
2013-05-15 00:50:32 [INFO] Preparing start region for level 5 (Seed: -4532856451351518050)
2013-05-15 00:50:33 [INFO] Preparing spawn area for AdminWorld, 73%
2013-05-15 00:50:34 [INFO] Preparing start region for level 6 (Seed: 2762054475848066192)
2013-05-15 00:50:35 [INFO] Preparing start region for level 7 (Seed: 5735127748379692992)
2013-05-15 00:50:38 [INFO] [Multiverse-Core] 8 - World(s) loaded.
2013-05-15 00:50:38 [INFO] [Multiverse-Core] Version 2.5-b665 (API v18) Enabled - By Rigby, fernferret, lithium3141 and main--
2013-05-15 00:50:38 [INFO] [DynColor] Enabling DynColor v1.1
2013-05-15 00:50:38 [INFO] [WorldGuard] Enabling WorldGuard v5.7.3
2013-05-15 00:50:38 [INFO] [WorldGuard] (world) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'world'
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_nether) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_nether) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_nether) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'world_nether'
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_the_end) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_the_end) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'world_the_end'
2013-05-15 00:50:38 [INFO] [WorldGuard] (Ghost) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (Ghost) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (Ghost) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (Ghost) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'Ghost'
2013-05-15 00:50:38 [INFO] [WorldGuard] (PaintBall) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (PaintBall) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (PaintBall) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (PaintBall) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'PaintBall'
2013-05-15 00:50:38 [INFO] [WorldGuard] (AdminWorld) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (AdminWorld) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (AdminWorld) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (AdminWorld) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'AdminWorld'
2013-05-15 00:50:38 [INFO] [WorldGuard] (oz) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (oz) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (oz) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (oz) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'oz'
2013-05-15 00:50:38 [INFO] [WorldGuard] (EventWorld) TNT ignition is PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (EventWorld) Lighters are PERMITTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] (EventWorld) Lava fire is blocked.
2013-05-15 00:50:38 [INFO] [WorldGuard] (EventWorld) Fire spread is UNRESTRICTED.
2013-05-15 00:50:38 [INFO] [WorldGuard] Loaded configuration for world 'EventWorld'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'world'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'world_nether'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'world_the_end'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'Ghost'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'PaintBall'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'AdminWorld'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'oz'
2013-05-15 00:50:38 [INFO] [WorldGuard] 0 regions loaded for 'EventWorld'
2013-05-15 00:50:38 [INFO] [dynmap] Enabling dynmap v1.6-646
2013-05-15 00:50:38 [INFO] [dynmap] Using PermissionsEx 1.19.5 for access control
2013-05-15 00:50:39 [INFO] [dynmap] Loaded 21 shaders.
2013-05-15 00:50:39 [INFO] [dynmap] Loaded 82 perspectives.
2013-05-15 00:50:39 [INFO] [dynmap] Loaded 12 lightings.
2013-05-15 00:50:40 [INFO] [dynmap] Web server started on address 0.0.0.0:39260
2013-05-15 00:50:40 [INFO] [dynmap] version 1.6-646 is enabled - core version 1.6-1624
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 3 maps of world 'world'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 2 maps of world 'world_nether'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 2 maps of world 'world_the_end'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 3 maps of world 'Ghost'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 3 maps of world 'PaintBall'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 3 maps of world 'AdminWorld'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 3 maps of world 'oz'.
2013-05-15 00:50:40 [INFO] [dynmap] Loaded 3 maps of world 'EventWorld'.
2013-05-15 00:50:40 [INFO] [dynmap] Enabled
2013-05-15 00:50:44 [INFO] [HeroicDeathPlus] Enabling HeroicDeathPlus v2.1
2013-05-15 00:50:44 [INFO] [HeroicDeathPlus] 2.1 enabled.
2013-05-15 00:50:44 [INFO] [iConomy] Enabling iConomy v7.0
2013-05-15 00:50:44 [INFO] [iConomy - April Fools] Enabled (379 ms)
2013-05-15 00:50:44 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
2013-05-15 00:50:44 [INFO] [iConomy - April Fools] Purged accounts with default balance.
2013-05-15 00:50:46 [INFO] [HawkEye] Enabling HawkEye v1.1.0
2013-05-15 00:50:46 [INFO] [HawkEye] Starting HawkEye 1.1.0 initiation process...
2013-05-15 00:50:46 [INFO] [HawkEye] Checking for a new update...
2013-05-15 00:50:46 [INFO] [HawkEye] No update for HawkEye found!
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Attempting to connecting to database at: jdbc:mysql://localhost:3306/gs_37260_1
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: No available MySQL connections, attempting to create new one
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.SignChangeEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.BlockFormEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.BlockFadeEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.BlockBurnEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.BlockFromToEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.LeavesDecayEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.BlockPlaceEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.block.BlockBreakEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.PlayerCommandPreprocessEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.PlayerQuitEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.PlayerTeleportEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.PlayerInteractEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.PlayerBucketEmptyEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.inventory.InventoryCloseEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.inventory.InventoryOpenEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.AsyncPlayerChatEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.player.PlayerJoinEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.entity.EntityDeathEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.hanging.HangingPlaceEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.entity.EntityChangeBlockEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.entity.EntityExplodeEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.hanging.HangingBreakByEntityEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.hanging.HangingBreakEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.entity.EntityChangeBlockEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.entity.EntityChangeBlockEvent
2013-05-15 00:50:46 [INFO] [HawkEye] DEBUG: Registering listener for org.bukkit.event.world.StructureGrowEvent
2013-05-15 00:50:46 [INFO] Accepted EditSessionFactory of type uk.co.oliwali.HawkEye.WorldEdit.WESessionFactory from uk.co.oliwali.HawkEye.WorldEdit
2013-05-15 00:50:46 [INFO] [HawkEye] Version 1.1.0 enabled!
2013-05-15 00:50:46 [INFO] [Trampoline] Enabling Trampoline v1.0
2013-05-15 00:50:46 [INFO] [OpenInv] Enabling OpenInv v2.0.2
2013-05-15 00:50:46 [INFO] [Modifyworld] Enabling Modifyworld v1.19.4
2013-05-15 00:50:46 [INFO] [Modifyworld] Modifyworld enabled!
2013-05-15 00:50:46 [INFO] [TheEndAgain] Enabling TheEndAgain v1.01
2013-05-15 00:50:46 [INFO] [TheEndAgain] TheEndAgain successfully enabled.
2013-05-15 00:50:46 [INFO] [FalseBookCore] Enabling FalseBookCore v0.93.1alpha
2013-05-15 00:50:46 [INFO] [ FalseBook Core ] using Vault for Permissions!
2013-05-15 00:50:46 [INFO] [ FalseBook Core ] FalseBookCore v0.93.1alpha by GeMo enabled!
2013-05-15 00:50:46 [INFO] [DoubleXP] Enabling DoubleXP v1.4.2
2013-05-15 00:50:46 [INFO] [DoubleXP] v1.4.2 has been enabled!
2013-05-15 00:50:46 [INFO] [DoubleXP] by JoeGandy1
2013-05-15 00:50:46 [INFO] [WeatherMan] Enabling WeatherMan v0.5.2
2013-05-15 00:50:46 [INFO] [WeatherMan] +-------------------------------------------------------------------+
2013-05-15 00:50:46 [INFO] [WeatherMan] + This version of WeatherMan was not tested with CraftBukkit v1.5.R3 +
2013-05-15 00:50:46 [INFO] [WeatherMan] + Check updates at http://dev.bukkit.org/server-mods/weatherman/    +
2013-05-15 00:50:46 [INFO] [WeatherMan] + or use this version at your own risk                              +
2013-05-15 00:50:46 [INFO] [WeatherMan] +-------------------------------------------------------------------+
2013-05-15 00:50:46 [INFO] [MobArena] Enabling MobArena v0.94.4.98
2013-05-15 00:50:47 [INFO] [MobArena] Loaded arena 'default'.
2013-05-15 00:50:47 [INFO] [MobArena] v0.94.4.98 enabled.
2013-05-15 00:50:48 [INFO] [AutoAnnouncer] Enabling AutoAnnouncer v1.7-03.23
2013-05-15 00:50:48 [INFO] [AutoAnnouncer] Permission support enabled!
2013-05-15 00:50:48 [INFO] [AutoAnnouncer] Settings Loaded (7 announces).
2013-05-15 00:50:48 [INFO] [AutoAnnouncer] Scheduled every 90 seconds!
2013-05-15 00:50:48 [INFO] [AutoAnnouncer] v1.7-03.23 is enabled!
2013-05-15 00:50:48 [INFO] [AutoAnnouncer] Developed by: [Sharkiller]
2013-05-15 00:50:48 [INFO] [Essentials] Enabling Essentials vPre2.11.1.2
2013-05-15 00:50:49 [INFO] Essentials: Using PermissionsEx based permissions.
2013-05-15 00:50:49 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.25-b320)
2013-05-15 00:50:49 [INFO] [Jobs] Enabling Jobs v2.11.0
2013-05-15 00:50:50 [INFO] [Jobs] Started database save task
2013-05-15 00:50:50 [INFO] [Jobs] Started buffered payment thread
2013-05-15 00:50:50 [INFO] [Jobs] Plugin has been enabled succesfully.
2013-05-15 00:50:52 [INFO] [ChatManager] Enabling ChatManager v1.19.1
2013-05-15 00:50:52 [INFO] [ChatManager] ChatManager enabled!
2013-05-15 00:50:52 [INFO] [ChatManager] Multiverse 2 integration enabled!
2013-05-15 00:50:52 [INFO] [FalseBookBlock] Enabling FalseBookBlock v0.93.1alpha
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] 0 Doors successfully loaded.
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] 0 Areas loaded.
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] 1 Bridges successfully loaded.
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] No Cauldrons loaded!
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] No Books loaded!
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] 1814 protected gateblocks successfully loaded.
2013-05-15 00:50:52 [INFO] [ FalseBook Block ] FalseBookBlock v0.93.1alpha by GeMo enabled
2013-05-15 00:50:52 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn vPre2.11.1.2
2013-05-15 00:50:52 [INFO] [Multiverse-Inventories] Enabling Multiverse-Inventories v2.5-b335
2013-05-15 00:50:54 [INFO] [Multiverse-Inventories 2.5-b335] enabled.
2013-05-15 00:50:54 [INFO] [VirtualPack] Enabling VirtualPack v2.5.1
2013-05-15 00:50:54 [INFO] VirtualPack 2.5.1 enabled
2013-05-15 00:50:58 [INFO] [CreativeGates] Enabling CreativeGates v1.4
2013-05-15 00:50:58 [INFO] [CreativeGates v1.4] === ENABLE START ===
2013-05-15 00:50:58 [INFO] [CreativeGates v1.4] === ENABLE DONE (Took 96ms) ===
2013-05-15 00:50:58 [INFO] [Ultrabans] Enabling Ultrabans v3.1.0
2013-05-15 00:50:59 [INFO] [Ultrabans] No Updates found on dev.bukkit.org.
2013-05-15 00:50:59 [INFO] [Ultrabans] Loaded. 0 secs.
2013-05-15 00:51:06 [INFO] [EssentialsChat] Enabling EssentialsChat vPre2.11.1.2
2013-05-15 00:51:06 [INFO] [Residence] Enabling Residence v2.6.6.4
2013-05-15 00:51:06 [INFO] [Residence] Found Vault using permissions plugin:PermissionsEx
2013-05-15 00:51:06 [INFO] [Residence] Scanning for economy systems...
2013-05-15 00:51:06 [INFO] [Residence] Found Vault using economy system: iConomy 7
2013-05-15 00:51:08 [INFO] [Residence] Found WorldEdit
2013-05-15 00:51:09 [INFO] [Residence] Enabled! Version 2.6.6.4 by bekvon
2013-05-15 00:51:09 [INFO] [ResidenceSigns] Enabling ResidenceSigns v2.9
2013-05-15 00:51:09 [INFO] [ResidenceSigns] Successfully Enabled.
2013-05-15 00:51:09 [INFO] [RideThaDragon] Enabling RideThaDragon v5.2.3
2013-05-15 00:51:09 [INFO] [RideThaDragon] [AutoUpdate] v1.4 enabled!
2013-05-15 00:51:09 [INFO] [RideThaDragon] v5.2.3 enabled!
2013-05-15 00:51:10 [INFO] [ChestShop] Enabling ChestShop v3.5
2013-05-15 00:51:10 [INFO] [ChestShop] LWC version 4.3.2 (b858-git-MANUAL) (March 16, 2013) loaded.
2013-05-15 00:51:10 [INFO] [ChestShop] Vault loaded - using iConomy 7
2013-05-15 00:51:10 [INFO] [ChestShop] Residence version 2.6.6.4 loaded.
2013-05-15 00:51:17 [INFO] [dynmap-residence] Enabling dynmap-residence v0.40
2013-05-15 00:51:17 [INFO] [dynmap-residence] initializing
2013-05-15 00:51:17 [INFO] [dynmap-residence] version 0.40 is activated
2013-05-15 00:51:17 [INFO] [AuthMe] Enabling AuthMe v2.7.16
2013-05-15 00:51:17 [INFO] [AuthMe] Loading Configuration File...
2013-05-15 00:51:17 [INFO] [AuthMe] Merge new Config Options if needed..
2013-05-15 00:51:17 [INFO] [AuthMe] Set Language: en
2013-05-15 00:51:17 [INFO] [AuthMe] Hook with Multiverse-Core for SpawnLocations
2013-05-15 00:51:17 [INFO] [AuthMe] Successfully hook with ChestShop!
2013-05-15 00:51:17 [INFO] [AuthMe] Vault plugin detected, hook with PermissionsEx system
2013-05-15 00:51:17 [INFO] [AuthMe] Authme 2.7.16 enabled
2013-05-15 00:51:22 [INFO] Server permissions file permissions.yml is empty, ignoring it
2013-05-15 00:51:35 [INFO] Done (66.289s)! For help, type "help" or "?"
2013-05-15 00:51:35 [INFO] Starting GS4 status listener
2013-05-15 00:51:35 [INFO] Starting remote control listener
2013-05-15 00:51:35 [INFO] Query running on 93.91.240.156:37260
2013-05-15 00:51:35 [WARNING] No rcon password set in '/hlserver/37260/server.properties', rcon disabled!
2013-05-15 00:51:35 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
2013-05-15 00:51:36 [INFO] /178.143.8.59:21607 lost connection
2013-05-15 00:51:36 [INFO] /178.143.8.59:21619 lost connection
2013-05-15 00:51:36 [INFO] /178.143.8.59:21625 lost connection
2013-05-15 00:51:36 [INFO] [RideThaDragon] [AutoUpdate] WARNING: Bukget returned 404
Obrázek
ObrázekObrázek

Uživatelský avatar
nejento
Příspěvky: 9815
Registrován: 28 lis 2011, 14:09
Reputation: 55
Kontaktovat uživatele:

Re: Konvertovanie iConomy na MySQL

#4 Příspěvekod nejento » 15 kvě 2013, 20:41

Vytvořila se ti tabulka? V kozoli totiž nic o připojování na MySQL není. A myslím, že to ani nevypisuje :D
Obrázek

Obrázek Přidejte se ke komunitě zákazníků na FakaHeda.eu Discord! Poznejte nové lidi nebo vyřešte svůj technický problém živě: https://discord.fakaheda.eu/

Uživatelský avatar
King_of_KeKs
Příspěvky: 155
Věk: 27
Registrován: 08 kvě 2012, 16:59
Reputation: 0
Bydliště: Bratislava, Slovakia
Kontaktovat uživatele:

Re: Konvertovanie iConomy na MySQL

#5 Příspěvekod King_of_KeKs » 15 kvě 2013, 20:47

Keď nastavím ako databázu na ktorú sa mi to má pripájať "MySQL" z "mini", tak sa mi vytvorí tabulka a normálne mi to do toho zapisuje nových hráčov, ale keď to nechám na "mini" a dám to iba konvertovať, tak sa mi s tým práve nič nedeje, ani tabulka sa mi nevytvorí :|
Obrázek
ObrázekObrázek


Zpět na „Minecraft, Tekkit“

Kdo je online

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