| 1 |
INSTALLATION
|
| 2 |
|
| 3 |
1. copy phpbb2drupal_import.php, viewtopics.php, stories.php to your drupal root.
|
| 4 |
2. Edit the phpbb2drupal_import.php file to modify the import settings.
|
| 5 |
3. If you want to support file uploads in comments, move the comment.module and comment_upload.module to the modules directory, and create the comment_file table using the comment_upload.mysql file.
|
| 6 |
4. Edit the the settings.php file in sites/default directory and let Drupal know where your phpbb database is using Drupal's Database URL format.
|
| 7 |
|
| 8 |
$db_url['phpbb'] = 'mysql://phpbb_username:phpbb_password@localhost/phpbb_db';
|
| 9 |
|
| 10 |
5. Open phpbb2drupal_import.php in your browser and follow the instructions to begin the import process.
|
| 11 |
|
| 12 |
NOTES
|
| 13 |
|
| 14 |
Due to the limitations in Drupal's database API's, your phpbb database tables must not have any prefixes, e.g. phpbb_users, but must have the default table names. Your Drupal tables may have any prefixes you wish.
|