Hey,
This is a /public_html/ install and no MU. Below are pasted contents. They are all defaults and unmodified from the previous version. Recommendations from here?
// .user.ini:
; Wordfence WAF
auto_prepend_file = ‘/home/USERNAME/public_html/wordfence-waf.php’
; END Wordfence WAF
// .htaccess:
# Wordfence WAF
<Files “.user.ini”>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</Files>
# END Wordfence WAF
//wordfence-waf.php:
<?php
// Before removing this file, please verify the PHP ini setting auto_prepend_file
does not point to this.
if (file_exists(‘/home/USERNAME/public_html/wp-content/plugins/wordfence/waf/bootstrap.php’)) {
define(“WFWAF_LOG_PATH”, ‘/home/USERNAME/public_html/wp-content/wflogs/’);
include_once ‘/home/USERNAME/public_html/wp-content/plugins/wordfence/waf/bootstrap.php’;
}
?>