Hendrik wrote:I just installed 1.1 but I still have no clue in how I can integrate phpbb.
I'm sorry to say I don't understand at all what you mean with Subversion repository as well as trunk/ folder.
You can get daily snapshots from here:
http://www.lifetype.net/snapshots/life ... latest.zipDo I need to change a lot of code to integrade phpbb or is it more or less build in as an option. I installed 1.1 because you all say that there it is integrated but I don't see how.
It's built in, but we haven't had time to document it yet.
Do I also need to change phpbb or just install it in the same database as LT?
No. Phpbb can live in its own database.
And if it needs the same database does it also need the same prefix?
No.
Just edit the file config/userdata.properties.php, comment these lines:
[code]
$config = Array(
"provider" => "LifeTypeUserDataProvider",
);
[/code]
And uncoment these:
[code]
$config = Array(
"provider" => "PhpBB2UserDataProvider",
"createBlogIfNotExisting" => true,
"database" => "phpbb2",
"user" => "root",
"password" => "",
"prefix" => "phpbb_"
);
[/code]
Don't forget to replace the default values with your own database, user, password and prefix for your phpbb installation.