このサイトが、昨日の夜「サイトに重大なエラーがありました」と表示されて表示できないのに気づいた。
When lastnight, I realized that this site was not serving and displayed “The site had a serious error”
wp-config.phpに define('WP_DEBUG', true);
を追記して、サイトを表示すると下記の表示が出た。
After adding
define('WP_DEBUG', true);
to wp-config.php and displaying the site, the following message appears.
Parse error: syntax error, unexpected ';' in /home/xs549470/pyama.fun/public_html/wp-includes/mo-waf-config.php on line 2
内容はこんな感じで、そりゃそうずらって感じ。
I understood immediately.
<?php
$SQL=;
$XSS=;
$RFI=;
<snip>
修正して無事表示できた。
Immediately fixed and the site appeared
<?php
$SQL="";
$XSS="";
$RFI="";
<snip>
軽く調べた感じ、2FAに利用してる miniOrange 2 Factor Authentication
の影響っぽくて、昨日自動更新されてたから、何かしらふんだのかもしれないけど、そんなに興味もないので深追いしてない。
It seems to be the effect of miniOrange 2 Factor Authentication used for 2FA, and it was updated automatically yesterday, so it may be something full of interest, but I’m not so deeply interested in it.