Book Image

phpBB: A User Guide

Book Image

phpBB: A User Guide

Overview of this book

phpBB is a free, open source Internet community application, with outstanding discussion forums and membership management. Written in the PHP scripting language, and making use of the popular MySQL database, phpBB is a standard among web hosting companies throughout the world, and is one of the most widely-used bulletin board packages in the world. This book is an abridged version of "Building Online Forums with phpBB 2", (ISBN 1904811132), focusing on a complete set of topics to help you set up and run your own phpBB-powered online community. This book gives you the power to use phpBB to set up and run your own online discussion forums with ease. It takes you through the whole process of setting up your phpBB site, and helps you create, customize, and manage your own online community with phpBB. Written by experienced phpBB administrators and enthusiasts, the emphasis is on simple and practical guidance for you to get the most from phpBB. Packed with step-by-step examples, this book is your ideal guide to learning phpBB.
Table of Contents (11 chapters)

Understanding Forum Permissions


Forum permissions were discussed in Chapter 4, but we’ll now take a more insightful approach so that we’ll be able to specify more precisely who can do what on your board.

Let’s start with defining two important terms: permission types and permission levels.

Permission Types and Permission Levels

Permission types and permission levels are two important terms when dealing with phpBB permissions, and understanding these will help you when you think of how to assign and control privileges:

  • Permission types are the actions that a user can do in the board, such as view, reply, vote, etc. When you think about permission types, think what, as in "What can be done?"

  • Permission levels reflect restrictions about who can do a certain actions. Every user has at least one permission level. When you think about permission levels, think who as in "Who can do it?"

The following list discusses the permission types ("What-s") that exist, and the capabilities they provide to...