Member:
Markus ⋅
Date: June 3, 2010, 08:26 PM
⋅ Subject: "Re: Forum in iWiccle"
A phpBB 3 plugin is one of the first third party plugins I intend to crunch together. What we will have is a generic integration layer for managing database overlaps, for automating basic data input both ways, and a URL combining setup, to make them work as native as possible in our software.
If you want to tweak around in the meantime, here's a recipe for a quick member integration:
- Open /core/ajax/members.php, scroll to line #530 -- MemberSQL::insert_new_member_short() etc. -- and after it link to a file containing your phpBB plugin script.
- The details to be included in w_members in the database will be available under $data to the plugin file. (Do print_r to see what's included.)
- Look up the user database table structure in phpBB, and in your plugin file, insert the new member's details accordingly.