Biocide Posted January 18, 2007 Share Posted January 18, 2007 I'm needing a little help with this for my web server that i am setting up. I figure this the best place to look for advice. I am trying to set up a super secure login for my website, with virtually no way around. I am looking to impliment a time limit for failed login attempts and also track exactly what pages each IP has accessed. They're will be multiple IP's allowed on the server that I am in control of. I am using PHP to code the website. Link to comment https://forums.phpfreaks.com/topic/34785-password-login-and-ip-trackingtracing/ Share on other sites More sharing options...
steviewdr Posted January 19, 2007 Share Posted January 19, 2007 If you ask a specific question, I will attempt to answer it for you.-steve Link to comment https://forums.phpfreaks.com/topic/34785-password-login-and-ip-trackingtracing/#findComment-164360 Share on other sites More sharing options...
Biocide Posted January 19, 2007 Author Share Posted January 19, 2007 How do i set up the database table and then make the md5 retrieve passwords from it Link to comment https://forums.phpfreaks.com/topic/34785-password-login-and-ip-trackingtracing/#findComment-164521 Share on other sites More sharing options...
steviewdr Posted January 23, 2007 Share Posted January 23, 2007 To setup database tables - you would be best installing phpmyadmin:http://www.phpmyadmin.net/home_page/downloads.phpWhen you md5 a password - it is a one-way hash, i.e. you cannot extract back out the password. All you can do is verify if a password = md5(password).Read: http://ie2.php.net/md5P.S. - this should be in the php help part of this forum. You will get more help there.-steve Link to comment https://forums.phpfreaks.com/topic/34785-password-login-and-ip-trackingtracing/#findComment-167154 Share on other sites More sharing options...
the_oliver Posted January 23, 2007 Share Posted January 23, 2007 Perhaps you should also consider using an SSL connection. Link to comment https://forums.phpfreaks.com/topic/34785-password-login-and-ip-trackingtracing/#findComment-167439 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.