How is going on user import joomla>phpbb? Is there any test build(i checked joomlaforge there isnt any).
My friend write me some script thnx "perrohunter" that could be used as import option.
FOr this you need phpmyadmin to paste code in your database where is forum located, in pbpbb_users table.
THe file is called "reader.php" it read from joomla db users and give in html page rezult wich you need to "Select All","Copy" and then paste in phpbb_users "SQL" field.
It only have problem with Date of registration(i think the time need to be cut off (but i dont know how)..
Here is code:
[code:1]
<?
mysql_connect("localhost","test","test"«»);
mysql_select_db("test"«»);
$result = mysql_query("select * from jos_users"«»);
while($r=mysql_fetch_array($result))
{
$jid=$r["id"];
$jusername=$r["username"];
$jpass=$r["password"];
$jmail=$r["email"];
$juserregdate=$r["registerDate"];
echo "INSERT INTO `phpbb_users` ( `user_id` , `username` , `user_password` , `user_regdate` , `user_email` )
VALUES ('$jid' , '$jusername', '$jpass', '$juserregdate' , '$jmail'); <br>";
}
?>[/code:1]
Cant wait to see that 1.0.2 build from screenshot
)