設定を保存しました。

VCCWでSiteGuard WP Pluginの画像認証を使えるようにする

この機能を使用するには、httpd.confのAllowOverrideにLimitを指定する必要があります。

この機能を使用するには、httpd.confのAllowOverrideにLimitを指定する必要があります。

VCCWでSiteGuardプラグインを使うと、毎度このアラートが出る。。
ってことで、修正。

/etc/apache2/sites-available/000-default.confを修正。

[code]
<Directory /var/www/html>
Options FollowSymLinks
AllowOverride FileInfo Options Limit
# AllowOverride All
Order allow,deny
Allow from all
</Directory>
[/code]

Allに変更。でもって、

[code]sudo /etc/init.d/apache2 restart[/code]

※ VCCW3より前のバージョンはちょっと違う。
/etc/httpd/sites-available/wordpress.confを修正。
んで、
[code]sudo service httpd restart[/code]

設定を保存しました。

でOK 😀