Problem/Bug Group Manager Not Working At All

Discussion in 'Plugin Help/Development/Requests' started by ghost_s1, Sep 9, 2016.

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

    ghost_s1

    Ok so i have been trying for the paste 3 days to figure out the problem ive been haveing but i dont understand the log so ive been trying everything else that came to mind. Ive already deleted every plugin configuration along with some of the plugins. Here is the error log for Group manager http://pastebin.com/i3m045hV
    i cannot use any command even though im op lvl 4 and it just says the same error over and over again
     
  2. Offline

    oceantheskatr

    If you give someone the permission * in a YML file (groups.yml, users.yml) then it must have quote marks around it. Go through your two files and change * to '*'. After that, start your server and if it doesn't work, do the following:

    Stop your server.
    Start your server.
    When it's fully started, stop it again.
    Go in to your server files.
    Go to the logs folder.
    Open the file called latest.log.
    Copy and paste the contents at http://pastebin.com/.
    Post it there and then link the URL here.
     
  3. Offline

    ghost_s1

  4. Online

    timtower Administrator Administrator Moderator

    @ghost_s1 It seems that you have the values attached to the dashes. There needs to be a space in between.
     
  5. Offline

    ghost_s1

  6. Online

    timtower Administrator Administrator Moderator

    @ghost_s1 Check your permissions file:
    Code:
        -bukkit.command.help
        -bukkit.command.list
        -bukkit.command.me
        -bukkit.command.say
        -bukkit.command.tell
        -askyblock.island. '*'
        -askyblock.team.create
        -askyblock.team.kick
        -askyblock.team.makeleader
    Needs to be
    Code:
        - bukkit.command.help
        - bukkit.command.list
        - bukkit.command.me
        - bukkit.command.say
        - bukkit.command.tell
        - askyblock.island. '*'
        - askyblock.team.create
        - askyblock.team.kick
        - askyblock.team.makeleader
    Notice the extra space
     
  7. Offline

    oceantheskatr

    Literally ALL of your permissions need a space between the hyphen and the start of the permission as Tim said.
    -bukkit.command
    to this:
    - bukkit.command

    ALSO the following is incorrect. I can see how you may have misinterpreted how I said that giving someone the * permission needs quote marks. I meant only for the * permission, not for something like griefprevention.* where there more than just a single asterisk.

    -griefprevention. '*'
    to this:
    - griefprevention.*
     
Thread Status:
Not open for further replies.

Share This Page