Reply To: No response from server!

Home Forums Support Forum No response from server! Reply To: No response from server!

#1379

Anti-Malware Admin
Key Master

You missed the .htaccess file in your public_html directory!
This file still has all that BPS code in it, including the 403 that is blocking my dynamic JavaScript that you want to work. That .htaccess file is on level up ,outside the site’s root directory, so it will actually affect all the site that you have inside your public_html directory (not a good idea, IMHO).

There was also an .htaccess file in /wp-content/ for this site which contains this code (which might also cause problems):
<FilesMatch "\.(?i:php)$">
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
</IfModule>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</FilesMatch>