| 1 |
*******Phorum Converter*******
|
| 2 |
|
| 3 |
This module converts Phorum DB data into drupal's DB using the forum and the
|
| 4 |
comments module. Since Phorum message's subject field is defined to be
|
| 5 |
varchar(255) and the appropriate field's on the drupal side are only varchar(64)
|
| 6 |
or varchar(128) therefore the install will set the comments table's subject
|
| 7 |
field, the node's table title's field and the node_revisions table's title
|
| 8 |
field to varchar(255).
|
| 9 |
|
| 10 |
To access the Phorum DB please add the login and URI information to the
|
| 11 |
settings.php with the 'phorum' associative key. For example:
|
| 12 |
$db_url = array(
|
| 13 |
'default' => 'mysql://Drupal_username:Drupal_password@localhost/Drupal_databasename',
|
| 14 |
'phorum' => 'mysql://Phorum_username:Phorum_password@localhost/Phorum_databasename',
|
| 15 |
);
|
| 16 |
|
| 17 |
|
| 18 |
++Modules you will probably want:
|
| 19 |
BBCode
|
| 20 |
Quicktags
|
| 21 |
Smileys
|
| 22 |
|
| 23 |
+++features to add to converter in the future (things it doesn't do now)
|
| 24 |
buddylist migration
|
| 25 |
private messages migration
|
| 26 |
private forums migration (with dependency on forum_access or similar)
|
| 27 |
redirects from old boards to new boards
|
| 28 |
|
| 29 |
This module was developed by a top secret developer (who shall remain nameless)
|
| 30 |
for pingVision, LLC (www.pingv.com), and packaged/contributed by Greg Knaddison (greggles).
|
| 31 |
|
| 32 |
Since Drupal and Phorum are continually evolving, this module is offered as a
|
| 33 |
snapshot of something that can work now (for Drupal 4.7.x and Phorum 5.1.x).
|
| 34 |
If you are attempting to do an import from or to other versions, you may need
|
| 35 |
to revise the code. We are not in the position to support continuous development
|
| 36 |
of this module, sorry, but we welcome input and/or interest in assuming this project.
|
| 37 |
We are potentially available for paid projects supporting a migration
|
| 38 |
using this module.
|
| 39 |
|
| 40 |
Send problems/questions/patches to: http://drupal.org/project/issues/phorum_converter
|
| 41 |
|
| 42 |
|
| 43 |
// $Id$
|