Hi @mohammadboozary,
Thanks for sending that over, your diagnostic shows no connectivity errors for inbound and outbound requests for your site, which is positive, but the auto_prepend_file
is claiming no_value
rather than the path to wordfence-waf.php.
As you duplicated this site, check your .htaccess and .user.ini files for the presence of auto_prepend value =
and specify the path to wordfence-waf.php, which should be /home/SITENAMEHERE/public_html/wordfence-waf.php
. If you’re unsure of this path, the diagnostics page of Wordfence that you sent the email from should display it under Wordfence > Tools > Diagnostics > Wordfence Firewall > wordfence-waf.php path.
Your .htaccess for FPM/FastCGI should look like:
# 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
Your .user.ini should look like:
; Wordfence WAF
auto_prepend_file = '/home/SITENAMEHERE/public_html/wordfence-waf.php'
; END Wordfence WAF
Let me know what the status of those files is/was and whether that remedies this issue for you.
Thanks,
Peter.