- Import users from a csv (Comma Separated Values) file through the Administration Control Panel of your phpBB board
- You have the option to send a welcome email to all imported users
- Users are added to the Registered Users Group
- A list will be displayed upon completion showing which users were imported and which users were not imported.
- php >= 5.0.4
- phpBB version >= 3.0.4
- Username, email address and password are required entries. If a password is not available, there needs to be an empty field for it.
- A header row is NOT allowed
- The csv file needs to be uploaded to the store directory
- Most delimiters and separators are supported. You will specify them in the import script
- Included are the most commonly used phpBB3 user fields. Additional fields can be added if desired
Installation instructions:
- Extract the files from the zip file
- Upload the files in the root directory to your board root directory
- Browse to the Administration Control Panel and install the User Import Module.
Complete instructions in the MODX format are in the install.xml file included in the package - The csv file needs to be uploaded to the store directory
Colliding usernames:
Usernames in the csv file will be checked against usernames in the database. If a name already exists in the database, the username will be skipped.
Passwords:
Password type selection depends on the password type in the csv file.
If plaintext is selected, the password will be hashed before importing.
If hashed is checked, the password will be imported as is.
If there is no password in the password field, one will be generated and hashed regardless of which option is selected.
E-mails:
E-mails will include the password only for generated passwords.
Additional modifications:
auth_db.php may need to be modified depending on the password hashing method selected.
- auth_db.php does NOT need to be modified if plaintext is selected.
- auth_db.php does NOT need to be modified if hashed is selected and the password hash is md5.
- auth_db.php needs to be modified if hashed is selected and the password hash is not md5.
1-July-2010 ric323 Made this topic sticky.