Not granting permissions
The zone isn't granting perms upon entry. I've added the perms and also groups that have the perms and neither are granting access to them.
I'm also having issues with this plugin and am wondering if it is still working.

I've recently set up a brand new server to test.

Plugins installed:
Zone Manager
Zone Perms

I add a group that I want added a removed from a zone:
oxide.group add test

I create a Zone to test with:
/zone_add test

Then in the ZonePerms.json file, I have added the required config for this zone:
"68889369": {
      "EnableZone": true,
      "OnZoneEnter": {
        "Groups": [
          "test"
        ],
        "Permissions": [
          "test"
        ]
      },
      "OnZoneExit": {
        "Groups": [
          "test"
        ],
        "Permissions": [
          "test"
        ]
      }
    }​

Then I test it by entering and exiting the zone and checking oxide.show user permissions. The test group is not added/removed like it should be.



Merged post

After further testing, I found that I simply didn't see the main Enable option in the ZonePerms config file:

{
  "Enable": false,​

This needs to be set to true:

{
  "Enable": true,​


DOH!

Thank you! This was driving me nuts. :)