View Single Post
  #2  
Old 07-28-2009, 05:59 PM
 
Shamun Shamun is offline
 

X-Adept
  
Join Date: Jun 2009
Location: North Carolina
Posts: 841
 

Default Re: Password protecting a static page

If its for 4.2.2 this is the wrong section.

As for an .htaccess option:

For server owners (Windows+SSH/Remote desktop/etc):

1) Go to http://aspirine.org/htpasswd_en.html
2) Enter username and password
3) Choose encryption type (SHA1 is strongest, plain is weakest.)
4) Press "Encrypt pass"
5) Go into notpad, paste that in. Save file as .htpasswd and be sure to select "All files" and not .txt
6) Move to C:\
7) Make .htaccess with the following:
Quote:
AuthName "Restricted Area"
AuthType Basic
AuthUserFile /.htpasswd
AuthGroupFile /dev/null
<Files FileYouWantPasswordProtected.php>
require valid-user

Place in the folder with the file you wish to have password protected.


That all assumes you have the .htpasswd in C:\
To change the location of the .htpasswd, change the line:
Quote:
AuthUserFile /.htpasswd

For C:\php\pub\ it would be:
/php/pub/.htpasswd
__________________
- Shane Munroe
Reply With Quote