I do believe you have to clear the cache.jelo77 wrote:1) My email template user_import.txt in language/en/email: I updated the text, but it just will not show up in the email that is actually send. Do I need to clear some cache or something and how do I do that?
The password is sent only if the tool generates a password. This is when you don't have a password to import and the password field is left blank. Otherwise it is assumed that your users will use the password from whatever system you were using before.jelo77 wrote:2) The email that is send out always reads: "You password is unable to be determined since it was encrypted in our previous database". I can select plaintext or hashed, it only makes a difference in the database, but not in the email that goes out to the user. Given that I upload a file including a plain text password, shouldn't it show up in the email correctly?
Those settings are correct.jelo77 wrote:However, the password is not showing in the email. I tried all options, including leaving the password field empty. A line in the csv file would look like:
test,,[email protected]
In the upload screen I would set username to 0, password to 1 and email to 2.
Code: Select all
----------------------------
Username: {USERNAME}
Password: {PASSWORD}
Board URL: {U_BOARD}
----------------------------
Please keep this e-mail for your records. Your account information is as
follows:
----------------------------
Username: DickyIII
Password: 2FWRFK
Board URL: http://localhost/phpBB3
----------------------------
Code: Select all
"user_id","name","Username","user_email","femail","user_website","user_avatar","user_regdate","user_icq","user_occ","user_from","user_interests","user_sig","user_viewemail","user_theme","user_aim","user_yim","user_msnm","user_password","storynum","umode","uorder","thold","noscore","bio","ublockon","ublock","theme","commentmax","counter","newsletter","user_posts","user_attachsig","user_rank","user_level","broadcast","popmeson","user_active","user_session_time","user_session_page","user_lastvisit","user_timezone","user_style","user_lang","user_dateformat","user_new_privmsg","user_unread_privmsg","user_last_privmsg","user_emailtime","user_allowhtml","user_allowbbcode","user_allowsmile","user_allowavatar","user_allow_pm","user_allow_viewonline","user_notify","user_notify_pm","user_popup_pm","user_avatar_type","user_sig_bbcode_uid","user_actkey","user_newpasswd","points","last_ip","karma","user_group_cp","user_group_list_cp","user_active_cp","agreedtos","user_nqlm_enable","user_nqlm_level","user_gender"
If that is the first row, that is the problem. You cannot have the field names as the first row.BellaChiCa wrote:Hey,
I have tried this import tool on a phpbb3 forum with nuke-data, but i get this error :
No Username found on line 1: line skipped.
....
My CSV file:
Code: Select all
"user_id","name","Username","user_email","femail","user_website","user_avatar","user_regdate","user_icq","user_occ","user_from","user_interests","user_sig","user_viewemail","user_theme","user_aim","user_yim","user_msnm","user_password","storynum","umode","uorder","thold","noscore","bio","ublockon","ublock","theme","commentmax","counter","newsletter","user_posts","user_attachsig","user_rank","user_level","broadcast","popmeson","user_active","user_session_time","user_session_page","user_lastvisit","user_timezone","user_style","user_lang","user_dateformat","user_new_privmsg","user_unread_privmsg","user_last_privmsg","user_emailtime","user_allowhtml","user_allowbbcode","user_allowsmile","user_allowavatar","user_allow_pm","user_allow_viewonline","user_notify","user_notify_pm","user_popup_pm","user_avatar_type","user_sig_bbcode_uid","user_actkey","user_newpasswd","points","last_ip","karma","user_group_cp","user_group_list_cp","user_active_cp","agreedtos","user_nqlm_enable","user_nqlm_level","user_gender"
D¡cky wrote: If that is the first row, that is the problem. You cannot have the field names as the first row.
You want to use the Username field for the user's name, so the field numbering is:
username = 2
user_email = 3
password = 18
You should be able to figure the positioning of any other fields you want from there.