Inactive [ADMN/SEC] AuthDB v2.3.6 - Database authentication and protection [1.1-1.4.5]

Discussion in 'Inactive/Unsupported Plugins' started by CraftFire, Mar 13, 2011.

  1. Offline

    CraftFire

    In order to centralize support of our legacy projects, we will no longer be providing support on Bukkit. Please use www.spout.org for support with our projects going forward.
     
  2. Offline

    contex

  3. Offline

    armandoguty

    I get [AuthDB] MYSQL CANNOT CONNECT!!! error.
    I changed debugmode to true on basic configuration and i saw on the server output that the mysql password changes to a diferent one to the password i have under mysql in basic.yml
    Why my password changes and what can I do???
    Im using last stable bukkit and authdb.
     
  4. Offline

    Wulfspider

    There is no way it would do that. Could you send me logs via PM?
     
  5. Offline

    armandoguty

    i trided other auth plugins and is the same error, the server or something keeps changing the password to a different one...
    In a moment i send you the log.
     
  6. Offline

    nighdriss

    Hello, i have an issue with a field not populating when the server is first run
    join:
    restrict: true # Only allow registered players to join and show custom message.
    Is missing from Advanced.yml

    join:
    restricted: "{RED}You are not registered, visit {ORANGE}www.craftfire.com {RED}to register."
    is missing from Messages.yml

    It will not populate @ all im on version 2.3.6

    NVM I figured most this out. thanks for the lack of support. ill be starting a guide on my webpage to connect Joomla any version with authdb/authdb Legacy. most of these are quick fixes and workarounds, as my Joomla is fully integrated into my server now with authdb using Joomla registrations password and username.
    playcraftmc.servegame.com
    Can also email me @[email protected]
    Ill offer any Joomla support I can.

    Side note their is a GREAT deal of help on this plugin, a tutorial would help lot of people.

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

    nismo

    Hi, I have some trouble and hope you could help me.
    I tried to get as much info as possible in this screenshots. Seems like AuthDB somehow is crashing my MySQL server. Here, have a look.
    http://mc.boxg.lv/authdb_problem.png
     
  8. Offline

    Wulfspider

    There are some issues with it due to lack of threading and such with MySQL, but it's unlikely to crash your MySQL server. More likely that your server isn't configured properly and you have AuthDB set to keepalive.

    We are not always here 24/7, and I've been away on vacation. ;)

    We can't make a tutorial for every single script. We assume that you would be knowledgeable on how to set that up yourself, given you installed Joomla and all with the same settings. We explain what each setting is right next to it, so that should be enough for capable server admins.

    Yeah... not really possible.

    We'll look into it, but don't expect an update super fast as we've focusing our efforts on the rewrite of AuthDB and our new AuthAPI, as the current AuthDB (Legacy) has many issues that aren't worth solving otherwise.

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

    aramis10

    Hello

    I have a question, and sorry for my English :)

    Is it possible to register on the game on MyBB.
    If this is how to configure it.
    If you are dumb if you can count on this update, I would very much depend on this.

    I want the user to register on the game and on the forum to have a choice.

    Regards
     
  10. The basic config and short descriptions on what each part does:
    Code:
    plugin:
        language:
            commands: English                            # Language you want to use for commands that matches a directory under translations.
            messages: English                            # Language you want to use for messages that matches a directory under translations.
        debugmode: false                                # Enable/disable debugging mode and additional console output.
        usagestats: true                                # Enable/disable usage stats reporting to CraftFire devs.
        logging: true                                    # Enable/disable logging to files.
        logformat: yyyy-MM-dd                            # Filename format of the AuthDB debug and error log files.
    database:
        type: mysql                                      # Database type/driver to use. Current options are MySQL and eBean (Bukkit persistence).
        host: localhost                                  # MySQL server hostname, domain, IP, or localhost for local connections. MySQL only.
        port: 3306                                      # Port used for connecting to your MySQL server. This is usually 3306. MySQL only.
        username: root                                  # Username used to connect to your database. Only valid for MySQL.
        password: root                                  # Password used to connect to your database. MySQL only.
        name: forum                                      # Name of the database you are connecting to. MySQL only.
        keepalive: false                                # Enable/disable keeping database connection alive. Do not use if your connection limit is low. MySQL only.
    script:
        name: phpBB                                      # Name of the script you are using.
        version: 3.0.8                                  # Version of the script you are using.
        tableprefix: phpbb_                              # Database table prefix for the script, if you use one.
    Just change everything in this file to match your servers config and change:
    Code:
    script:
        name: phpBB
        version: 3.0.8
        tableprefix: phpbb_          
    To:
    Code:
    script:
        name: MyBB
        version: 1.6.4
        tableprefix: phpbb_    <-- This to what prefix you chose for your MyBB install      
     
  11. Offline

    aramis10

    I have configured the File basic.yml, anyone can register online and log in to the game. But I want to be able to register on the game with the ability to login to the forum.

    Registration game - >> Login Forums
    and vice versa

    Please help if you can, because I do not know where to change it.
     
  12. Offline

    Wulfspider

    All they need to do is use /register in-game like it shows on the screen when they join, unless you disabled it in advanced.yml.
     
  13. Registering ingame have a tendency to mess it up some but if you inactivate it ingame and force all to register on the site thay can login with the same pass on the game afterwards,
     
  14. Offline

    NotYetRated

    Any notes on how to use this with Joomla?
     
  15. In the basic yml, just config the database to use the same as joomla and choose the right script at the bottom as:
    Code:
    script:
        name: joomla                                      # Name of the script you are using.
        version: 1.6.1                                  # Version of the script you are using.
        tableprefix: (whatever perfix you use here)    
    So if you for example have installed joomla and the database for joomla is named joomlabase, loginname for database is jonny, password is feelgood and the prefix is mcraft_. Then it should look like this.
    Code:
    plugin:
        language:
            commands: English                            # Language you want to use for commands that matches a directory under translations.
            messages: English                            # Language you want to use for messages that matches a directory under translations.
        debugmode: false                                # Enable/disable debugging mode and additional console output.
        usagestats: true                                # Enable/disable usage stats reporting to CraftFire devs.
        logging: true                                    # Enable/disable logging to files.
        logformat: yyyy-MM-dd                            # Filename format of the AuthDB debug and error log files.
    database:
        type: mysql                                      # Database type/driver to use. Current options are MySQL and eBean (Bukkit persistence).
        host: localhost                                  # MySQL server hostname, domain, IP, or localhost for local connections. MySQL only.
        port: 3306                                      # Port used for connecting to your MySQL server. This is usually 3306. MySQL only.
        username: jonny                               # Username used to connect to your database. Only valid for MySQL.
        password: feelgood                                  # Password used to connect to your database. MySQL only.
        name: Joomlabase                                      # Name of the database you are connecting to. MySQL only.
        keepalive: false                                # Enable/disable keeping database connection alive. Do not use if your connection limit is low. MySQL only.
    script:
        name: joomla                                      # Name of the script you are using.
        version: 1.6.1                                  # Version of the script you are using.
        tableprefix: mcraft_  
     
    Wulfspider likes this.
  16. Offline

    Serios

    @contex do you have any progress on the rewrite?
     
  17. Offline

    Wulfspider

  18. Offline

    NotYetRated

    Excellent! Thank you so much. Anything I can do to get it going for Joomla 2.5.6?
     
  19. Offline

    Wulfspider

    It hasn't been officially updated for that yet. You could try using it with it, but you'd have to set to the latest supported version, which may or may not be compatible, so use at your own risk until updated.
     
  20. Offline

    NotYetRated

    Thanks much Wulfspider.
     
  21. Does this work with 1.3.1?
     
  22. Offline

    Wulfspider

    I haven't tested yet, but I am going to assume not due to the vast amount of changes in 1.3.1. We'll be testing it and upgrading it as needed soon.
     
  23. Offline

    xBlazeTECH

    I am new to the config, but quite knowledgeable about mysql, I was wondering if simone could put up directions for integration withdrupal?
     
  24. Offline

    userNo99

    Before your new version comes out for 1.3.1, I recommend you add support for people using legitimate copies of Minecraft so that they can login to their server account on an "offline-mode" server when the Minecraft login servers are down. When they're down, the legit client forces you to join with the username "Player".
     
  25. Offline

    FurmigaHumana

    Wulfspider
    Wulfspider An 1.3.1 update will be truly appreciated, the PlayerChatEvent has to be updated... Is there any chance to have an option to disable the inventory protection?

    This plugin still under rewrite? In very low priority, right? :c
     
  26. Offline

    Wulfspider

    I've tested the latest builds, and had no issues running them. Inventory protection is always enabled on registered users, as that is the point of this addon, for protection. Guest (unregistered user) inventories can be allowed in advanced.yml.
     
  27. Offline

    siemaeniu500

    How I can import xauth database to auth db database?

    I am not using mysql or sql.
     
  28. Offline

    Wulfspider

    There really isn't an easy way to do it right now. We added xAuth support, but no way of converting from their format as far as I know. I've had a hard time trying to test xAuth as well last time I tried.
     
  29. Offline

    siemaeniu500


    I can sent you my xauth database. Do you can convert ?
     
  30. Offline

    dawon

    Hi,

    After updating to 1.3.1 AuthDB seemed to be working well, but there is one serious problem I encounter. Every player is logged in like their session hasn't expired even that the player has not logged in for a long time. I tried to disable sessions but still noone is asked for password.

    Everything worked well in 1.2.5. I tried even the newest unstable build of AuthDB, but without success.

    Do you have any idea what can cause this issue?

    Thanks
     
  31. Offline

    ron975

    I'm using bpermissions and every time someone tries to log in, they get "You do not have permissions to use this command"

    I have the perms correctly entered. I have no idea why it's showing this message.
     

Share This Page