Do BPS troubleshooting step #2:
2. On the Security Modes page, select the Deactivate Root Folder BulletProof Mode (Default Mode) Radio button and click the Activate|Deactivate button.
If the problem is no longer occurring after doing BPS troubleshooting step #2, then most likely you will need to do these Custom Code steps below: Note: If the code in your BPS root htaccess file looks a little different then you want to to delete this section of the code “readme\.html|” after copying it to the BPS Custom Code text box.
1. Copy the modified htaccess code below to this BPS Root Custom Code text box: CUSTOM CODE DENY ACCESS TO PROTECTED SERVER FILES AND FOLDERS
2. Click the Save Root Custom Code button to save your Root custom code.
3. Go to the Security Modes page and click the Create secure.htaccess File AutoMagic button.
4. Select the Activate Root Folder BulletProof Mode Radio button and click the Activate|Deactivate button.
# DENY BROWSER ACCESS TO THESE FILES # Use BPS Custom Code to modify/edit/change this code and to save it permanently. # wp-config.php, bb-config.php, php.ini, php5.ini, readme.html # To be able to view these files from a Browser, replace 127.0.0.1 with your actual # current IP address. Comment out: #Require all denied and Uncomment: Require ip 127.0.0.1 # Comment out: #Deny from all and Uncomment: Allow from 127.0.0.1 # Note: The BPS System Info page displays which modules are loaded on your server. <FilesMatch "^(wp-config\.php|php\.ini|php5\.ini|bb-config\.php)"> <IfModule mod_authz_core.c> Require all denied #Require ip 127.0.0.1 </IfModule>