Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

What are the permissions on the default roles?

After my import all roles appear the same. Admin, moderator, user, etc.

The docs are currently empty:
http://docs.vanillaforums.com/help/roles-permissions/default-role-types/

Was hoping someone had the defaults to screenshot before I set up a new forum just to get them right.

Comments

  • R_JR_J Ex-Fanboy Munich Admin

    I'm not 100% sure because I never did this, but it wouldn't harm, so you can try this: create a file in the following path /plugins/resetAllRoles/class.resetallroles.plugin.php

    <?php
    
    $PluginInfo['resetAllRoles'] = array(
        'Name' => 'Reset All Roles',
        'Version' => '0.1'
    );
    
    class ResetAllRolesPlugin extends Gdn_Plugin {
        public function setup() {
            Gdn::permissionModel()->resetAllRoles();
        }
    }
    
    

    Then activate your new plugin "Reset All Roles". The function "setup()" is called on activation and it should reset all role permissions to standard permissions.

    It does nothing more, so you can deactivate it right again.

Sign In or Register to comment.