Kennel wrote:
Well, you can use one table for both forums and the rest of your site, but modifying PunBB to use an external table would be a lot of work. Doing it the other way round would probably be easier. It all depends though. Bottom line is yes, it's possible, but it can involve a great deal of work and you will have to know PHP and little about databases to do it.
To make my own user database integrated into PunBB, only about 20 lines of code was needed and some small database fetching functions to work.
Schematic
-----------
Login -> Fetch user from my database
| |
Exists Doesn't exist
| |
Insert new user Let punbb look
into pbb_users in pbb_users
with all values if user already
needed exists there
| | \
Set variables Exists \
needed by punbb | Doesn't exist
| | \
| / \
------PunBB's own login PunBB shows the
procedure takes error login
care of the rest
Then I disable the functions for sending out lost password, register new users, etc, because those I already have in my own software :-).