View Single Post
Old 08-12-2004, 06:53 PM   #2 (permalink)
asdfasdf1
Upright
 
How is the site hosted? If it's hosted on Apache than you can start using .htaccess and .htpasswd files.

This will let you prompt for a login/password built in apache and nearly impossible to get past.

Here is an example of a config for .htaccess
##########
deny from all

##Allow One IP address without auth.
allow from 207.144.22.22/32
AuthType Basic
AuthName "Configuration System - Level 15"
AuthUserFile /home/website.com/www/secured/.htpasswd
require valid-user
# Satisfy any will let passworded users or IP Users
# Satisfy all will require you to match ip and password
satisfy any
#


More on google!
asdfasdf1 is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73