This topic has been closed. The current convertor is located at http://www.phpbb.com/community/viewtopi ... &t=1722325
[/edit]
1. Just skip this step if your database's encoding is utf8. Otherwise, you need to convert your vb3 database's encoding to utf8.
Suppose your system is linux, fox e.g., my system is ubuntu feisty.
export mysql:
Code: Select all
mysql -uroot -p --add-drop-database --default-character-set=latin1 your_database > db.sql
Code: Select all
iconv -f old_encoding -t utf8 db.sql > db_utf8.sql
Code: Select all
SET NAMES utf8;
SET CHARACTER_SET_CLIENT=utf8;
SET CHARACTER_SET_RESULTS=utf8;
Code: Select all
mysql -uroot -p
> create database db_utf8
mysql -uroot db_utf8 < db_utf8.sql
2. copy the old vb3.0.x to your test server.
3. Install a new phpbb3 system, and when install finished, do not close the window.
4. copy my converter to the phpbb3/install/convertors directory
5. run the converter from the installing window.
6. modify auth_db.php file, make it like with what I offered, or you can simple replace it with old one.
BTW 1: There is a chinese version, in my blog: http://wlx.westgis.ac.cn/388/
BTW 2: I could not upload the attachment now, so you can download it in my blog.