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)

Sending and Receiving Private Messages (PM)


One neat phpBB feature is that users can communicate privately with each other outside the public board area, through private messages (PM). (PM is also used as a verb, as in "Please PM me".) PMs work very similarly to the normal email we’re all used to. The interface for writing a PM is the same as for writing a posting, except there is a field for the recipient’s username at the top. Also, you can look up a username if you’re not sure about the spelling.

There are the following private message boxes:

  • Inbox: Stores all incoming messages, just like in a normal email mailbox.

  • Sentbox: Contains all messages that you’ve sent to other members.

  • Outbox: Temporarily contains those messages that you’ve sent but which have not yet been read by the recipient. You can edit or delete messages in the outbox. As soon as the recipient reads the message, the sender can no longer amend it. At this point the message is final. Sometimes it can so happen that a user...