[Plugin: WP Bulletin Board] Permission Denied?
-
I am running WordPress 3.4.2 with Multi-Sites (SubDirectory). I have successfully installed and activated this plugin. I have also successfully created a category, forums, and a topic for testing. The problem lies when I attempt to view the forums. The forum page will load up appropriately, but when I attempt to actually enter the forums, I get this message:
You do not have the required permissions to access this forum!
Now, I noticed that when I modify wp-bulletin-board/php/wpbb-view-forum.php on line 9 and comment out the following:
// Third parameter is 'view' by default $view_permissions = wpbb_user_has_permission($user_id, $forum); if ($view_permissions === false) { wpbb_goback1('forum-index', NULL); ?> <div class="wpbb-message-failure"> <?php _e('You do not have the required permissions to view this forum!', 'wp-bb'); ?> </div> <?php wpbb_exit(); }
The forum loads properly. However, when I actually click on the topic, it gives me the same message. I know I could modify the view-topic code in the same manner as the view-forum code above and allow all users to bypass the permission system, but I don’t want to do that. I like the permissions system.
Is this plugin not compatible with the Multi-Site system?
- The topic ‘[Plugin: WP Bulletin Board] Permission Denied?’ is closed to new replies.