joshmeyer Posted December 3, 2006 Share Posted December 3, 2006 Before I build my authentication system with PEAR::Auth, I'd like to avoid reinventing the wheel. What I need is:1.) a way to verify that a user owns a particular email account by sending a test message to that account with a link to follow.2.) a way to handle forgotten passwords3.) works in MySQL4.) login page is SSL enabled5.) users can be flagged as regular users or privileged usersA thorough google search turned up nothing. I would have thought there'd be a very standard way to do this and perhaps demo code out there.Do I need to reinvent the wheel?Josh Link to comment https://forums.phpfreaks.com/topic/29287-authentication-with-email-verification-lost-password-help-reinvent-wheel/ Share on other sites More sharing options...
keeB Posted December 3, 2006 Share Posted December 3, 2006 No need to reinvent the wheel, however...1. mail() and md5(username+email+password?)2. just like any other form3. ok4. SSL is a protocol, not PHP related5. There's a membership system tutorial in this site. Take a look at the tutorial section. Link to comment https://forums.phpfreaks.com/topic/29287-authentication-with-email-verification-lost-password-help-reinvent-wheel/#findComment-134238 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.