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. Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.