Here is a free PHP login system for you. Easy suitable for any site: http://evolt.org/PHP-Login-System-with-Admin-Features Enjoy
I like it because it can be easily integrated into any website, thanks for sharing it for us. Cheers.
I tried it but I have a problem , I can't see my users passwords. It's crypted or something , this is an example of the passwords I see " b94236876742d440aaf00d2064a02442 " ?!?!?! Please help ; I need a way to acces my users account to modify their pages
Not having access to the passwords is a good thing, you could probably reverse-engineer it though.. But better would be to do something like this in a new page: session_start(); $_SESSION['username'] = $_GET['username']; $_SESSION['userid'] = (int) $_GET['userid']; header('Location: bla'); //bla is the destination url PHP: You would then access that page like so: sessiontakeover.php?username=bla&userid=5 (look in the db for those values) Obviously you would have to protect this page so only you, the admin, can execute this. Btw, this is untested and might not work.
Hey...look...another *FREE* and *BETTER* authentication system. Let those fools reinvent the wheel and the rest of us professionals will use the standards compliant libraries like PEAR, PECL, ZEND, etc.
That's true, always, ALWAYS, look if you find a possible script in PEAR, PECL, or ZEND first. They're better written and more error proof.
Its always better to use simple script instead of going for frameworks for these type of simple tasks like login system. Frameworks are always a burden and it will contain loads of unwanted stuff which we will have to include. For a simple application like login system personally I wont prefer frame works. But yes they might be more error proof Thanks friends for giving these links.
Another option is integration with OpenID which is decentralized and designed for distributed authentication.
The login system is apparently designed so that if the database is ever compromised that the user's passwords are not also compromised. I've hashed passwords too on systems I've written, and if a user needs a password reset (ie: they forgot) would just have to create them one from scratch in the database.
is there mods for this login system, for example "add friend" "PM user" "upload profile picture" and so on???
Anybody learned the maaking.com login script? In users.php there is a problem: cannot be saved(submitted) EditMyInfo, however I typed "UPDATE "._prefix."users SET...."; Can anybody used this script and now want to share with all digitalpoint members?