FrogStoneMedia
Forum Replies Created
-
Good call on OPcache! I’m using WP Rocket / Memcached Redux and used WP Rocket to clear the cache. Install + Activation worked after that. No restart required 🙂
>>Just wanted to make sure that you tried to completely uninstall Wordfence, then re-installing it again and you encounter the same error?
Yes to producing the same error.
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 settingauto_prepend_filedoes 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’;
}
?>