Home | About Us | FAQs | Site Map | Contact Us   

To Contact Sales:  
Email Us Or Call  
888.438.7894  
Account Setup
Account Utilities
User Agreement Tool
Account Controller
htaccess Authentication
Developer Information
FAQ's
Network Information
Home > Support > htaccess Authentication

Fill out the form below to generate a .htpasswd file entry for a username and password. You can then copy the line below into your .htpasswd file for use with .htaccess authentication access control. If you do not have an .htpasswd file in your home directory already, then you must create one.

     Username:         
Password:
Verify Password:



Add this line to your .htpasswd file

::

Place the following .htaccess file in the directory you would like to protect

<files .htaccess>
      deny from all
</files>

AuthName Protected
AuthType basic
AuthUserFile /local/home/YOUR_LOGIN/.htpasswd
Require valid-user