Inactive [SEC] xAuth v2.0.10 - Extra Authentication [1.2.5-R1.3+]

Discussion in 'Inactive/Unsupported Plugins' started by CypherX, Mar 15, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    CypherX

    xAuth v2.0.10 - (CraftBukkit build: [1.2.5-R1.3+])
    Download v2.0.10

    lycano is taking over the development of xAuth as I no longer have the time nor the will to continue working on it. Please see the BukkitDev page: http://dev.bukkit.org/server-mods/xauth/

    Thanks to everyone who has showed support for me and xAuth over the past 17 months. It's been 'fun'. If for any reason you need to contact me, stop by my IRC channel (irc.rizon.net #LoveDespite) or toss me a message at http://love-despite.com/forum. Until we meet again, stay gold. Bang.

    ------------------------------------------------------------------​

    xAuth is a plugin designed with a single task in mind: protect a server and its players while running in offline-mode. The basic idea of this protection is allowing players to register an account based on their player name and a supplied password. When a registered player connects to the server, that player will be prompted to authenticate his or herself by logging in. If and only if a valid password is supplied, they will regain full control of their account until their session expires.


    Features
    • Before registering/logging in, players cannot:
      • Chat, execute commands, interact with objects (levers, chests, etc.), move, or pickup items.
      • Break or place blocks
      • Receive or give damage, be targeted (followed) by hostile mobs
    • Inventory and location protection
    • In-depth setting and message configuration
    • Persistent login sessions through server restarts
    • Player name filter and password complexity configuration
    • Kick non-logged in (but registered) players after a configurable amount of time
    • Bukkit Permissions support
    • Kick or temporarily lockout the IP address of a player who fails to log in after a configurable amount of tries
    • Custom, highly secure password hashing
    • H2 and MySQL support
    • Authentication over URL (AuthURL) allows for connection to forum or website databases
    Changelog (click for full changelog)
    • Version 2.0.10
      • [Fixed] Exploit to completely bypass login system.
      • [Fixed] xAuth commands not working with Rcon
      • [Fixed] Exploiting login system to avoid fire & drowning damage.
      • [Fixed] NPE caused by player connecting & disconnecting during same server tick.
      • [Fixed] 'Table "SESSIONS" not found' error when a player uses /logout while session length is set to zero.
      • [Fixed] Exploiting location protection after dieing to return to the spot of death.
    • Version 2.0.9
      • Added several reverse single session configuration options.
      • Fixed registration.forced: false not working.
      • Updated version check and H2 download links.
    xAuth Importer
    xAuth Importer is a tool used to import accounts from previous versions of xAuth as well as other authentication plugins. Click here for more information.
     
  2. Offline

    siemaeniu500

    When people logging , they not stay at spawn , but just falling down.


    This is my config file , can you edit like you say ?

    Code:
    main:
      auto-disable: true
      check-for-updates: false
      download-library: true
      reload-on-join: false
    mysql:
      enabled: false
      host: localhost
      port: 3306
      user: user
      password: password
      database: xauth
      tables:
        account: accounts
        location: locations
        lockout: lockouts
        playerdata: playerdata
        session: sessions
    authurl:
      enabled: false
      url: http://google.com
      registration: false
      status: false
      groups: false
      broadcast-login: false
    single-session:
      reverse: true
      guests:
        reverse: false
        immunity-length: 5
    registration:
      enabled: true
      forced: true
      require-email: false
      validate-email: false
      account-limit: 1
      activation: false
      require-login: true
    password:
      min-length: 3
      allow-change: true
      complexity:
        lowercase: false
        uppercase: false
        number: false
        symbol: false
    guest:
      timeout: 300
      notify-cooldown: 5
      hide-inventory: true
      protect-location: true
      allowed-commands:
      - register
      - login
      - l
      restrict:
        player:
          chat: true
          interact: true
          move: true
          pickup: true
        block:
          place: true
          break: true
        entity:
          damage: true
          target: true
    session:
      length: 0
      verifyip: true
      godmode-length: 5
    strikes:
      amount: 5
      lockout-length: 3600
    account:
      track-last-login: false
    filter:
      min-length: 3
      allowed: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890_
      disallowed: ''
      blank-name: true
    permissions:
      backend: pex
    groups:
      guest: ''
      authenticated: ''
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  3. Offline

    lycano

  4. Offline

    whitas

    You are very funy. You should rather say "thank you" to lycano for taking this plugin under development.
    And YES, I have my own server so I know something. Put your server into online mode for some time and let Premium people to play.
     
  5. Offline

    Koksons

    My server log:
    Code:
    2012-08-12 16:00:08 [SEVERE] Could not pass event PlayerQuitEvent to xAuth
    org.bukkit.event.EventException
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
        at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
        at net.minecraft.server.ServerConfigurationManagerAbstract.disconnect(ServerConfigurationManagerAbstract.java:213)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:711)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:286)
        at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
        at net.minecraft.server.ServerConnection.b(SourceFile:35)
        at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
        at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:583)
        at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
        at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NullPointerException
        at com.cypherx.xauth.PlayerDataHandler.restoreData(PlayerDataHandler.java:282)
        at com.cypherx.xauth.PlayerManager.unprotect(PlayerManager.java:198)
        at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerQuit(xAuthPlayerListener.java:127)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:601)
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
        ... 14 more
    I'm use xAuth 1.0.12 and bukkit 1.3.1 R1.0

    Can you help me ?
     
  6. Offline

    DJTommek

    Yes, now I thing it's work perfectly fine! :)

    btw: until I update to new x.x.x.12 users can't register.
     
  7. Offline

    siemaeniu500

    You must redownload it.

    http://ci.luricos.de/public/xAuth/
     
  8. Offline

    Koksons

    siemaeniu500 chyba polak :)
    Więc zapytam, który plik pobrać ? 3 min temu pobierałem xAuth-2.0.12-bin.zip
     
  9. Offline

    lycano

    Oke for DJTommek it works .. is he the only one who did read the posts? :D
     
  10. Offline

    siemaeniu500

    Musisz sciagnac jeszcze raz ten plik , bo koles cos naprawil. Ja sciaglem jeszcze raz i dziala pieknie.

    lycano

    Can yo add that by default to config. Because many server still have problem with hackers.

    Code:
    filter:
      min-length: 3
      allowed: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890_
      disallowed: ''
      blank-name: true
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  11. Offline

    lycano

    siemaeniu500 can you explain to me what this does? im currently busy cleaning my room ^^
     
  12. Offline

    Koksons

    siemaeniu500 pobrałem jeszcze raz wersję 1.0.12 i dalej ten sam błąd...
     
  13. Offline

    KrzywyRyj

    My server crashed:

    Code:
    [SEVERE] org.bukkit.command.CommandException: Unhandled exception executing command 'xauth' in plugin xAuth v2.0.12
    2012-08-12 17:32:47 [SEVERE]    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:42)
    2012-08-12 17:32:47 [SEVERE]    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
    2012-08-12 17:32:47 [SEVERE]    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:492)
    2012-08-12 17:32:47 [SEVERE]    at org.bukkit.craftbukkit.CraftServer.dispatchServerCommand(CraftServer.java:488)
    2012-08-12 17:32:47 [SEVERE]    at net.minecraft.server.DedicatedServer.ah(DedicatedServer.java:248)
    2012-08-12 17:32:47 [SEVERE]    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:213)
    2012-08-12 17:32:47 [SEVERE]    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
    2012-08-12 17:32:47 [SEVERE]    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
    2012-08-12 17:32:47 [SEVERE]    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    2012-08-12 17:32:47 [SEVERE] Caused by: java.lang.ClassCastException: org.bukkit.craftbukkit.command.ColouredConsoleSender cannot be cast to org.bukkit.entity.Player
    2012-08-12 17:32:47 [SEVERE]    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:91)
    2012-08-12 17:32:47 [SEVERE]    at com.cypherx.xauth.commands.xAuthCommand.unregisterCommand(xAuthCommand.java:161)
    2012-08-12 17:32:47 [SEVERE]    at com.cypherx.xauth.commands.xAuthCommand.onCommand(xAuthCommand.java:54)
    2012-08-12 17:32:47 [SEVERE]    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
    2012-08-12 17:32:47 [SEVERE]    ... 8 more
    2012-08-12 17:32:47 [SEVERE] Encountered an unexpected exception CommandException
    org.bukkit.command.CommandException: Unhandled exception executing command 'xauth' in plugin xAuth v2.0.12
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:42)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:492)
        at org.bukkit.craftbukkit.CraftServer.dispatchServerCommand(CraftServer.java:488)
        at net.minecraft.server.DedicatedServer.ah(DedicatedServer.java:248)
        at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:213)
        at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.ClassCastException: org.bukkit.craftbukkit.command.ColouredConsoleSender cannot be cast to org.bukkit.entity.Player
        at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:91)
        at com.cypherx.xauth.commands.xAuthCommand.unregisterCommand(xAuthCommand.java:161)
        at com.cypherx.xauth.commands.xAuthCommand.onCommand(xAuthCommand.java:54)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
        ... 8 more
    2012-08-12 17:32:47 [SEVERE] This crash report has been saved to: /data/visas/162717.wom/./crash-reports/crash-2012-08-12_17.32.47-server.txt
    Can you help me?
     
  14. Offline

    lycano

    KrzywyRyj i will fix this asap. You cant enter commands via shell cause i tried to save coding time by doing it quick =)

    in addition i will remap the update routine so you will be informed of an update.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  15. Offline

    DJTommek

    lycano
    It's is again here...

    Player says, he had crash in Minecraft client... (white table)
    and his inventory was wiped.

    Code:
    2012-08-12 17:32:40 [INFO] Connection reset
    2012-08-12 17:32:40 [INFO] xxxx lost connection: disconnect.endOfStream
    2012-08-12 17:32:40 [INFO] Player Disconnected xxxx.
    2012-08-12 17:32:40 [SEVERE] Could not pass event PlayerQuitEvent to xAuth
    org.bukkit.event.EventException
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
        at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
        at net.minecraft.server.ServerConfigurationManagerAbstract.disconnect(ServerConfigurationManagerAbstract.java:213)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:711)
        at net.minecraft.serverhook.NetServerHandlerProxy.a(NetServerHandlerProxy.java:100)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:286)
        at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
        at net.minecraft.server.ServerConnection.b(SourceFile:35)
        at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
        at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:583)
        at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
        at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NullPointerException
        at com.cypherx.xauth.PlayerDataHandler.restoreData(PlayerDataHandler.java:282)
        at com.cypherx.xauth.PlayerManager.unprotect(PlayerManager.java:198)
        at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerQuit(xAuthPlayerListener.java:127)
        at sun.reflect.GeneratedMethodAccessor403.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:601)
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
        ... 15 more
     
  16. Offline

    McCreepers

    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:27:04 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:27:04 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:27:04 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more





    I had this error. When I started using pex as the "permission" But I'm actually using group-manager.
    But whenever I change the permission system to bukkit, it shoots me a long error and doesnt let the plugin work, saying the plugin is out of date! Solution pelase! I think its worse than the previous one cyber made........
     
  17. Offline

    Darkfard

    i used the new version of xauth 2.0.12.bin.zip​
    when they login they can move and do everything they normally can. just inventory's don't get loaded.​
    Any fixes?​
     
  18. Offline

    McCreepers

    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:36:21 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:36:21 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:36:21 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:36:22 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
    ... 14 more
    2012-08-12 11:36:22 [SEVERE] Could not pass event PlayerMoveEvent to xAuth
    org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:213)
    at net.minecraft.server.Packet10Flying.handle(SourceFile:136)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:579)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:472)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:99)
    at com.cypherx.xauth.PlayerManager.isRestricted(PlayerManager.java:223)
    at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerMove(xAuthPlayerListener.java:224)
    at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute




    This is the error given when a new player joins!

    Oh and players are unable to /register!

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  19. Offline

    whitas

    Ja mam to samo :)

    Yes, me the same. And as OP, Owner etc cannot do /xauth unregister <player>

    Some lines from server.log after /xauth unregister

    org.bukkit.command.CommandException: Unhandled exception executing command 'xauth' in plugin xAuth v2.0.12
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:42)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:492)
    at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:878)
    at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:825)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:807)
    at net.minecraft.server.Packet3Chat.handle(Packet3Chat.java:44)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:583)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:91)
    at com.cypherx.xauth.commands.xAuthCommand.unregisterCommand(xAuthCommand.java:161)
    at com.cypherx.xauth.commands.xAuthCommand.onCommand(xAuthCommand.java:54)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
    ... 15 more
    2012-08-12 18:44:14 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'xauth' in plugin xAuth v2.0.12
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:42)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:492)
    at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:878)
    at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:825)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:807)
    at net.minecraft.server.Packet3Chat.handle(Packet3Chat.java:44)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
    at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
    at net.minecraft.server.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:583)
    at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
    at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:476)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:408)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoClassDefFoundError: ru/tehkode/permissions/PermissionManager
    at com.cypherx.xauth.permissions.backends.PermissionsExSupport.hasPermission(PermissionsExSupport.java:113)
    at com.cypherx.xauth.permissions.PermissionBackend.has(PermissionBackend.java:203)
    at com.cypherx.xauth.permissions.PermissionManager.has(PermissionManager.java:91)
    at com.cypherx.xauth.commands.xAuthCommand.unregisterCommand(xAuthCommand.java:161)
    at com.cypherx.xauth.commands.xAuthCommand.onCommand(xAuthCommand.java:54)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
    ... 15 more

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  20. Offline

    clavat

    Hi, with 2.0.10, i have updated my server on 1.3, and now players loose their inventory on /logout or when they crash.

    It beacause i'm on 1.3 ? need any table on database update ?
     
  21. Offline

    lycano

    New Update available : 2.0.13

    ==> implemented

    ==> Autoupdater will now notify all upcoming updates correctly (currently priority is set to HIGH for the time beeing)

    Download the latest version at http://ci.luricos.de/public/xAuth/

    Please dont change the backend when the server is running this will most likely crash. I do have implemented it for a start but not for self usage. A new command will be implemented when its ready.

    Also if you do not use PermissionsEx change permission.backend to bukkit instead of pex or you will get tons of errors in console.

    whitas you seem to not use PermissionsEx as permission plugin as well ... i think i have to create a Resolver for that in the near future.

    Again: If you don't use PermissionsEx as permission plugin change permission.backend in config.yml to bukkit

    Edit: Change permissions.backendto pex if you want to use PermissionsEx as permission system.

    Please redownload 2.0.13 as i hotfixed it.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  22. Offline

    whitas

    I'm using GroupManager from Essentials. So, what should I change to ? My current config.yml is exactly the same as for bukkit 1.2.5 and was working corectly
     
  23. Offline

    lycano

    whitas under plugins/xAuth/ open config.yml then find permission.bukkit. Change the Value to bukkit instead of pex.
     
  24. Offline

    KrzywyRyj

    My skin disappeared on my server ;/ Not only mine, almost all players don't have skins.
    (sorry for my bad english)
     
  25. Offline

    Koksons

    Error still occurs (1.0.13):
    Code:
    2012-08-12 19:58:18 [INFO] Connection reset
    2012-08-12 19:58:18 [INFO] Matt lost connection: disconnect.quitting
    2012-08-12 19:58:18 [SEVERE] Could not pass event PlayerQuitEvent to xAuth
    org.bukkit.event.EventException
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:332)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
        at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:477)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:462)
        at net.minecraft.server.ServerConfigurationManagerAbstract.disconnect(ServerConfigurationManagerAbstract.java:213)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:711)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:281)
        at net.minecraft.server.NetServerHandler.d(NetServerHandler.java:109)
        at net.minecraft.server.ServerConnection.b(SourceFile:35)
        at net.minecraft.server.DedicatedServerConnection.b(SourceFile:30)
        at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:581)
        at net.minecraft.server.DedicatedServer.q(DedicatedServer.java:212)
        at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:474)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:406)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NullPointerException
        at com.cypherx.xauth.PlayerDataHandler.restoreData(PlayerDataHandler.java:282)
        at com.cypherx.xauth.PlayerManager.unprotect(PlayerManager.java:198)
        at com.cypherx.xauth.listeners.xAuthPlayerListener.onPlayerQuit(xAuthPlayerListener.java:127)
        at sun.reflect.GeneratedMethodAccessor123.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:601)
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:330)
        ... 14 more
    2012-08-12 19:58:21 [INFO] Connection reset
    2012-08-12 19:58:21 [INFO] czopkenss lost connection: disconnect.quitting
    
     
  26. Offline

    Leemur

    hello, i use mysql, want to make a fresh server, and got this error:
    Code:
    2012-08-12 20:59:24 [INFO] [xAuth] Enabling xAuth v2.0.13
    2012-08-12 20:59:24 [INFO] [xAuth] PermissionAlias backend: 'pex' registered!
    2012-08-12 20:59:24 [INFO] [xAuth] PermissionAlias backend: 'bukkit' registered!
    2012-08-12 20:59:24 [INFO] [xAuth] Initializing pex backend
    2012-08-12 20:59:24 [WARNING] [xAuth] This plugin is not ready yet.
    2012-08-12 20:59:24 [INFO] [xAuth] Permission Plugin not yet available. Defaulting to built-in permissions until Permissions is loaded.
    2012-08-12 20:59:24 [INFO] [xAuth] Successfully established connection to MySQL database
    2012-08-12 20:59:24 [INFO] [xAuth] Table created: xauth_accounts
    2012-08-12 20:59:24 [INFO] [xAuth] Table created: xauth_playerdata
    2012-08-12 20:59:24 [SEVERE] [xAuth] Something went wrong while updating table [xauth_playerdata] to revision [002]
    com.cypherx.xauth.exceptions.TableUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ';
    ALTER TABLE `xauth_playerdata` MODIFY `armor` TEXT NULL' at line 1
        at com.cypherx.xauth.database.DatabaseUpdater.executeQuery(DatabaseUpdater.java:200)
        at com.cypherx.xauth.database.DatabaseUpdater.runUpdate(DatabaseUpdater.java:122)
        at com.cypherx.xauth.database.DatabaseController.runUpdater(DatabaseController.java:163)
        at com.cypherx.xauth.xAuth.onEnable(xAuth.java:155)
        at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217)
        at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:365)
        at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:381)
        at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:265)
        at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:247)
        at net.minecraft.server.MinecraftServer.i(MinecraftServer.java:296)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:275)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:225)
        at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:140)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    2012-08-12 20:59:24 [INFO] [xAuth] Table created: xauth_sessions
    2012-08-12 20:59:25 [INFO] [xAuth] Table created: xauth_locations
    2012-08-12 20:59:25 [INFO] [xAuth] Table created: xauth_lockouts
    2012-08-12 20:59:25 [INFO] [xAuth] Table [xauth_lockouts] updated to revision [001]
    2012-08-12 20:59:25 [INFO] [xAuth] v2.0.13 Enabled!
     
  27. Offline

    whitas

    OK, I've don this.

    both plugin and config taken directly from latest zipfile 2.0.13

    But now I have different kind of error:

    2012-08-12 20:03:37 [SEVERE] Error occurred while enabling xAuth v2.0.13 (Is it up to date?)
    java.lang.RuntimeException: java.lang.NoSuchMethodException: com.cypherx.xauth.permissions.backends.BukkitPermissionsSupport.<init>(com.cypherx.xauth.p
    ermissions.PermissionManager, org.bukkit.configuration.Configuration)
    at com.cypherx.xauth.permissions.PermissionBackend.getBackend(PermissionBackend.java:192)
    at com.cypherx.xauth.permissions.PermissionBackend.getBackend(PermissionBackend.java:151)
    at com.cypherx.xauth.permissions.PermissionManager.setBackend(PermissionManager.java:63)
    at com.cypherx.xauth.permissions.PermissionManager.initBackend(PermissionManager.java:49)
    at com.cypherx.xauth.permissions.PermissionManager.<init>(PermissionManager.java:38)
    at com.cypherx.xauth.xAuth.onEnable(xAuth.java:139)
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217)
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:365)
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:381)
    at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:265)
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:247)
    at net.minecraft.server.MinecraftServer.i(MinecraftServer.java:296)
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:275)
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:225)
    at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:140)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    Caused by: java.lang.NoSuchMethodException: com.cypherx.xauth.permissions.backends.BukkitPermissionsSupport.<init>(com.cypherx.xauth.permissions.Permis
    sionManager, org.bukkit.configuration.Configuration)
    at java.lang.Class.getConstructor0(Class.java:2723)
    at java.lang.Class.getConstructor(Class.java:1674)
    at com.cypherx.xauth.permissions.PermissionBackend.getBackend(PermissionBackend.java:176)
    ... 16 more

    Generally, with perrmisions beckend set to "bukkit" - plugin doesn't load.
    When set to "pex" loads but then there is lots of exeptions in server.log

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
  28. Offline

    komarEX

    This log is upside down :p Anyway smth is wrong with permissions. I don't use pex. I have 'bukkit' in config.yml

    Code:
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.permissions.PermissionBackend.getBackend(PermissionBackend.java:176)
    12.08 20:18:10 [Server] INFO at java.lang.Class.getConstructor(Class.java:1674)
    12.08 20:18:10 [Server] INFO at java.lang.Class.getConstructor0(Class.java:2721)
    12.08 20:18:10 [Server] INFO Caused by: java.lang.NoSuchMethodException: com.cypherx.xauth.permissions.backends.BukkitPermissionsSupport.<init>(com.cypherx.xauth.permissions.PermissionManager, org.bukkit.configuration.Configuration)
    12.08 20:18:10 [Server] INFO at net.minecraft.server.ThreadServerApplication.run(SourceFile:539)
    12.08 20:18:10 [Server] INFO at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:380)
    12.08 20:18:10 [Server] INFO at net.minecraft.server.DedicatedServer.init(DedicatedServer.java:140)
    12.08 20:18:10 [Server] INFO at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:225)
    12.08 20:18:10 [Server] INFO at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:275)
    12.08 20:18:10 [Server] INFO at net.minecraft.server.MinecraftServer.i(MinecraftServer.java:296)
    12.08 20:18:10 [Server] INFO at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:247)
    12.08 20:18:10 [Server] INFO at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:265)
    12.08 20:18:10 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:381)
    12.08 20:18:10 [Server] INFO at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:365)
    12.08 20:18:10 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:217)
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.xAuth.onEnable(xAuth.java:139)
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.permissions.PermissionManager.<init>(PermissionManager.java:38)
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.permissions.PermissionManager.initBackend(PermissionManager.java:49)
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.permissions.PermissionManager.setBackend(PermissionManager.java:63)
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.permissions.PermissionBackend.getBackend(PermissionBackend.java:151)
    12.08 20:18:10 [Server] INFO at com.cypherx.xauth.permissions.PermissionBackend.getBackend(PermissionBackend.java:192)
    12.08 20:18:10 [Server] INFO java.lang.RuntimeException: java.lang.NoSuchMethodException: com.cypherx.xauth.permissions.backends.BukkitPermissionsSupport.<init>(com.cypherx.xauth.permissions.PermissionManager, org.bukkit.configuration.Configuration)
    12.08 20:18:10 [Server] SEVERE Error occurred while enabling xAuth v2.0.13 (Is it up to date?)
    12.08 20:18:10 [Server] INFO [xAuth] Initializing bukkit backend
    12.08 20:18:10 [Server] INFO [xAuth] PermissionAlias backend: 'bukkit' registered!
    12.08 20:18:10 [Server] INFO [xAuth] PermissionAlias backend: 'pex' registered!
    12.08 20:18:09 [Server] INFO [xAuth] Enabling xAuth v2.0.13
     
  29. Offline

    zaklooz


    I have this error to, whats the problem
     
  30. Offline

    lst96

    i tried updating to that 2.0.13 version and it didnt require people to login. downgraded back to 2.0.10 and it required login again


    [​IMG]
     
  31. Offline

    lycano

    whitas or use the command "xauth config permissions.backend bukkit" and reload the server.

    Koksons thanks for the reply. This is actually intresting! The client disconnected and xauth is trying to get the inventory. Ill change that in the next update. => done

    New Update ^^

    • For all of those who had Inventory problems. Please verify if its fixed
    Regarding BukkitDev you may have noticed that xAuth is back on bukkitdev. Please be patient. This is an old content please do not download any files from there til you see the latest version under files which is 2.0.14 atm.

    whitas also ... download version 2.0.14 i fixed this in that version.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 17, 2016
Thread Status:
Not open for further replies.

Share This Page