PHPBB-style User Authentication Suite?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Detour
Forum Newbie
Posts: 2
Joined: Wed Oct 20, 2004 10:53 am

PHPBB-style User Authentication Suite?

Post by Detour »

Does anyone know of a PHPBB-style user authentication and management suite? Ideally i'm looking for something that will allow me to quickly and easily implement a complete user auth system so that i can focus and developing the rest of the site. I need something that has double opt-in user sign-up (eg. register a name, then activate the account via email link). Any suggestions? I've browsed phpclasses.org but most of what i'd seen doesn't provide this functionality....
User avatar
m3mn0n
PHP Evangelist
Posts: 3548
Joined: Tue Aug 13, 2002 3:35 pm
Location: Calgary, Canada

Post by m3mn0n »

Well if you like the features this provides, how about a stripped down version of phpBB?
Detour
Forum Newbie
Posts: 2
Joined: Wed Oct 20, 2004 10:53 am

Post by Detour »

i use PHPBB but haven't really delved into the source code.. is user authentication implemented via classes?

anyway i just want an easy but feature-rich way of user sign up, authentication, and management.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

registration is handled outside authentication and outside management in phpBB. Authentication typically happens in includes/auth.php ... management happens in the administrative scripts. Signup happens in profile.php and includes/usercp_register.php
Post Reply