Log in

View Full Version : i am willing to pay 70 $ for login script



navinperera
07-16-2008, 07:15 PM
Dear friends :)
I need a login script that allow only one user to login using one user name. Multiple users canot login using same user name.
contact me iplt20@live.com live msn talk.

djr33
07-17-2008, 01:58 AM
I've added you. Add me to your list so we can talk.

kuau
07-18-2008, 04:20 AM
I may be missing something here, but why not just create an .htaccess file and don't give anyone else the password?

harryknight
07-18-2008, 08:25 AM
How is that done please as I may like to use that myself.


=====

create an .htaccess file and don't give anyone else the password

harryknight
07-18-2008, 08:26 AM
How is that done please as I may like to use that myself.

===create an .ht access file which is passworded

kuau
07-18-2008, 08:43 AM
Use a text editor such as Notepad to create a text file with something like the following in it:


AuthUserFile /home/username/etc/.htpasswd
AuthType Basic
AuthName "This Section is Password Protected"
Require valid-user

Replace the /home/username/etc/ with the path to somewhere safe on your site. Save it as htaccess.txt. FTP it to the folder you want password protected. Rename it to .htaccess.

Use your text editor to create the .htpasswd file to hold the username(s) and password(s). Dynamic Drive has a good password generator here:

http://tools.dynamicdrive.com/password/

The file will look something like this:


username:87PQ/tX0PsWW6

Save the file as htpasswd.txt, FTP it to the path in line 1 of the htaccess file, then rename it to .htpasswd just as before.

Go to the page in your browser and it will now ask you for your username and password.

Voila! :)