On the time - look at the column user_regdate in your phpBB database. The code is assuming that column is a unix timestamp. What do you see there? This is the code that moves the time over:
| Code: |
$registerDate = date( "Y-m-d H:i:s", $row->user_regdate );
$lastvisitDate = date( "Y-m-d H:i:s", $row->user_lastvisit );
|
On everyone being an Admin, the code assumes that the phpBB database column user_level is 1 for admins - this is the code
| Code: |
// Set user type and group id
if ( $row->user_level == "1" ) {
$usertype = "administrator";
$gid = $admingid;
} else {
$usertype = "Registered";
$gid = $usergid;
}
|
if that is not the case for your data, then you can make everyone just a registered user by changing the above code to
| Code: |
$usertype = "Registered";
$gid = $usergid;
|
and the readme explains how to move the avatars:
"3. Copy all files from your old site's forum images/avatars to images/comprofiler
or if you do not have CB, to images/fbfiles/avatars/"
I do not know if the avatars get put into the joomla database properly on a system that does not have CB as I have not tested it that way