Página 1 de 1

MySQL 5.0 Support for phpBB 2.0.x

PostagemEnviado: 07 Mar 2009, 17:15
por Master Portugas
MySQL 5.0 Support(by Graham)


We have received a number of queries recently regarding whether phpBB 2.0.x will run on MySQL 5.0.x.

I'm glad to report that it will install and run, although there are some minor issues on some particular distributions of MySQL (primarily the Windows build) which may require a minor change to allow installation.

If you are already running phpBB and wish to migrate to MySQL 5, there should be no issues, providing that PHP on your server is configured to install it.

If you are performing a new install on MySQL 5, you should make the following change before you start the install.

OPEN:

install/schemas/mysql_schema.sql


FIND
Código: Seleccionar todos
bbcode_uid char(10) NOT NULL,


REPLACE WITH
Código: Seleccionar todos
bbcode_uid char(10) DEFAULT '' NOT NULL,
You should then install normally and select the MySQL 4 option from the installation script.


The phpBB Development Team.