変更後php.ini
最大ファイルアップロードサイズと最大投稿サイズ。Apacheを再起動すると、タイトルにエラーが表示されます。どうして?そしてそれを解決する方法は?
# vi /etc/php.ini
# service httpd restart
# service httpd start
Starting httpd: Syntax error on line 304 of /etc/httpd/conf/httpd.conf:
Invalid command 'remove', perhaps misspelled or defined by a module not included in the server configuration
行304は次のとおりです。
<Directory />
Options Includes Indexes FollowSymLinks MultiViews
remove Word Indexes
Options Includes FollowSymlinks MultiViews
AllowOverride None
</Directory>
そのスニペットの3行目と4行目。設定は次のようになります
<Directory />
Options Includes Indexes FollowSymLinks MultiViews
AllowOverride None
</Directory>