PhpBB3.1
From phpBB Development Wiki
phpBB 3.1, codename Ascraeus, is the next major feature release in the phpBB 3.x line. As of July 18, 2010[1], phpBB 3.1 has been feature frozen. All new suggestions will be pushed back to phpBB 3.2. It is intended to be as backwards compatible as possible.
Contents |
Requirements
Most of the system requirements are the same as 3.0.x. The most notable change is that PHP >= 5.3.2 is now required. Newer versions of PostgreSQL, SQLite, and MySQL are pending discussion[2].
Request for Comments
The set of features that were proposed for phpBB 3.1 can be found here: Request for Comments
Composer
In order to use phpBB 3.1 in development, you need to run Composer[3] from within the phpBB directory. This will install some external PHP library dependencies. See the README[4] "installing dependencies" section for more instructions.
Moving from 3.0 to 3.1
Styles and template engine changes 3.1
If you replace the files of your style with 3.1 compatible ones, before running the database update from 3.0 to 3.1, these styles will stay installed.
Template Engine Changes in 3.1
Working with the new config class
Search Backends
Search backend classes must follow the new naming convention so a backend in includes/search/foobar.php has to contain a class called phpbb_search_foobar and must implement a get_name() method returning the name to be displayed in the ACP.
phpbb_ Class Prefix
Some classes have been renamed to avoid conflicts with other software. If you are referencing the name of any of these classes, you will have to change them:
- session => phpbb_session
- user => phpbb_user
- auth => phpbb_auth

