Password protect directory in cPanel

Password protect directory in cPanel

1. Log in to your cPanel account > Files section > Directory Privacy menu: 



2. Select Document Root for option and the domain name in question from the drop-down menu, and hit Go



3. Once there, you may pick up the directory you wish to protect: 



4. In Security Settings section give a name to the protected directory  and check-mark Password protect this directory option: 




5. In Create User section specify the username and the password that should be used to access this directory: 




6. In our example we've set protection for wp-admin directory, so that when following http://nctest.info/wp-admin link, the following authentication pop-up window comes up: 

Mozilla Firefox



Google Chrome




This error message will appear if one fails to enter the required credentials: 




How to password protect files


Follow the steps below in order to password protect an individual file: 

1. Navigate to /home/user in your File Manager



Make sure that Show Hidden Files (dotfiles) option is enabled in Settings menu: 



2. Create a file named .htpasswd and place it above your root directory, so visitors cannot access it. 
Example of the root directory pathway for shared accounts: /home/cpanelusername/.htpasswd 

NOTE: replace 'cpanelusername' with the actual cPanel username for your hosting account: 





3. Create an encrypted password using htpasswd generator. It doesn't matter how many individual files you wish to protect, they can all share a common .htpasswd file: 




4. Right click on .htpasswd file and select Code Edit option: 



5. Place the generated .htpasswd code into .htpasswd file and click on Save Changes button: 



6. Navigate to the directory where the file that you would like to password protect is stored. 

7. If there is still no .htaccess file, create one by clicking on File icon: 



8. Right click on .htaccess file and select Code Edit option: 



9. Insert the following code into .htaccess file: 

<FilesMatch "examplefile.extension"> 
AuthName "Member Only" 
AuthType Basic 
AuthUserFile /home/cpanelusername/.htpasswd 
require valid-user 
</FilesMatch>


NOTE: replace 'examplefile.extension' with your actual file's name and 'cpanelusername' with your actual cPanel username. 



10. Click on Save and then on Close button. 

This will help you to protect the specified file, while leaving all other files in the folder unprotected. 


WordPress and password protected files

WordPress can have some minor conflicts with password protecting files due to the changes in its default .htaccess rules. 

If you have WordPress installation with enabled permalinks, it is not possible to use Password Protect Directories option in cPanel or via a .htpasswd file. 

Following these steps you will be able to password protect files by editing .htaccess file. 

NOTE: make sure that you have created a backup of your .htaccess file before making any changes to it. Thus, you will be able to revert back to a previous version if  needed. 

1. Edit .htaccess File 

Edit .htaccess file in the folder for your WordPress installation and remove the line of code shown in bold below: 

# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 
# END WordPress 


Replace this line: 

RewriteRule . /index.php [L] 

with this new one: 

RewriteRule ./ /index.php [L] 

After that add the code needed for password protection. The final version should look like this: 

# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ./ /index.php [L] 
</IfModule>
# END WordPress 


<FilesMatch "examplefile.extension"> 
AuthName "Member Only" 
AuthType Basic 
AuthUserFile /home/cpanelusername/.htpasswd 
require valid-user 
</FilesMatch> 


And save the changes

Below you can see the example of our .htaccess file code: 



2. Reset Permalinks 

You will also need to re-generate WordPress permalinks to make sure that they have the new URL structure. You can do it in your WordPress admin panel > Settings Permalinks menu. 

 If you had Post name option enabled, for instance, you need to switch it to Default, save the changes and then revert everything back: 

   

This should reset the permalinks and prevent any posts or pages from returning a 404 Page Not Found error.


As a result, you will get the follow authentication pop-up window when trying to open a protected file in browser: 

Mozilla Firefox



Google Chrome

 



This error message will appear if one fails to enter the required credentials: 



How to password protect multiple files

You can protect more than one file by using wildcard names. On the FilesMatch line in the previous .htaccess code, try one of the directives below: 

<FilesMatch "*.html"> 
<FilesMatch "file.*"> 
<FilesMatch "*.*"> 


 

for cPanel x3 theme:

How to password protect directories

1. Log in to your cPanel account > Security section > Password Protect Directories menu: 



2. Select Document Root for option and the domain name in question from the drop-down menu, and hit Go



3. Once there, you may pick up the directory you wish to protect: 



4. In Security Settings section give a name to the protected directory  and check-mark Password protect this directory option: 




5. In Create User section specify the username and the password that should be used to access this directory: 




6. In our example we've set protection for wp-admin directory, so that when following http://nctest.info/wp-admin link, the following authentication pop-up window comes up: 

Mozilla Firefox


Google Chrome
 



This error message will appear if one fails to enter the required credentials: 




How to password protect files


Follow the steps below in order to password protect an individual file: 

1. Create a file named .htpasswd and place it above your root directory, so visitors cannot access it. 
Example of the root directory pathway for shared accounts: /home/cpanelusername/.htpasswd 

NOTE: replace 'cpanelusername' with the actual cPanel username for your hosting account: 





2. Create an encrypted password using htpasswd generator. It doesn't matter how many individual files you wish to protect, they can all share a common .htpasswd file: 




3. Right click on the .htpasswd file and select Code Edit option: 



4. In the pop-up window click on Edit button: 



5. Place the generated .htpasswd code into .htpasswd file and click on Save Changes button: 



6. Navigate to the directory where the file that you would like to password protect is stored. 

7. If there is still no .htaccess file, create one by clicking on New File icon. 

8. Right click on .htaccess file and select Code Edit option: 



9. Insert the following code into .htaccess file: 

<FilesMatch "examplefile.extension"> 
AuthName "Member Only" 
AuthType Basic 
AuthUserFile /home/cpanelusername/.htpasswd 
require valid-user 
</FilesMatch>


NOTE: replace 'examplefile.extension' with your actual file's name and 'cpanelusername' with your actual cPanel username. 



10. Click on Save and then on Close button. 

This will help you to protect the specified file, while leaving all other files in the folder unprotected. 


WordPress and password protected files

WordPress can have some minor conflicts with password protecting files due to the changes in its default .htaccess rules. 

If you have WordPress installation with enabled permalinks, it is not possible to use Password Protect Directories option in cPanel or via a .htpasswd file. 

Following these steps you will be able to password protect files by editing .htaccess file. 
Review this article for further information regarding how to edit your .htaccess file. 

NOTE: make sure that you have created a backup of your .htaccess file before making any changes to it. Thus, you will be able to revert back to a previous version if  needed. 

1. Edit .htaccess File 

Edit .htaccess file in the folder for your WordPress installation and remove the line of code shown in bold below: 

# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 
# END WordPress 


Replace this line: 

RewriteRule . /index.php [L] 

with this new one: 

RewriteRule ./ /index.php [L] 

After that add the code needed for password protection. The final version should look like this: 

# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ./ /index.php [L] 
</IfModule>
# END WordPress 


<FilesMatch "examplefile.extension"> 
AuthName "Member Only" 
AuthType Basic 
AuthUserFile /home/cpanelusername/.htpasswd 
require valid-user 
</FilesMatch> 


And <b>save the changes</b>. 

Below you can see the example of our .htaccess file code: 



2. Reset Permalinks 

You will also need to re-generate WordPress permalinks to make sure that they have the new URL structure. You can do it in your WordPress admin panel > Settings Permalinks menu. 

 If you had Post name option enabled, for instance, you need to switch it to Default, save the changes and then revert everything back: 

   

This should reset the permalinks and prevent any posts or pages from returning a 404 Page Not Found error. 


As a result, you will get the follow authentication pop-up window when trying to open a protected file in browser: 

Mozilla Firefox


Google Chrome
 



This error message will appear if one fails to enter the required credentials: 



How to password protect multiple files

You can protect more than one file by using wildcard names. On the FilesMatch line in the previous .htaccess code, try one of the directives below: 

<FilesMatch "*.html"> 
<FilesMatch "file.*"> 
<FilesMatch "*.*"> 





That's it!
    • Related Articles

    • Password Protect Directory Directly From IIS - VPS/Dedicated Servers

      In the event that you want to lock down a specific directory and you have administrator privileges on the server, this is one way you can go about it. Log into the server and open IIS Manager Drill down the navigation tree to the domain and/or ...
    • Protect a directory in H-sphere

      How to protect a directory through Hsphere: 1. Login to Your control panel 2. Click FTP Manager 3. Click File Manager (HtProtect) 4. Click Protect at the bottom 5. Browse to the directory you want to lock, in this case "admin" (click the + through, ...
    • Reset password manually in OnApp

      When password reset in onApp fails or does not work you can manually reset the password with the following process   Reboot in recovery. Login via recovery with user/password being root/recovery or root/defaultrootpassword <-- could be either one, ...
    • Password Protection for Hsphere Windows Directories

      If you are in a Shared Windows HSPHERE environment and wish to  password protect a directory please follow these steps:   1. Create a sub-ftp account via your h-sphere control panel. This can be found under >FTP/User Account>FTP User>FTP sub-accounts ...
    • Reset mysql password

      First try to see if you can login to mysql as root. ssh to root user, or su root from AD login.       mysql If you get an error similar to: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) Then the password is ...