1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【初心者】アップロードサイズ上限の変更方法|AWSのlightsailのWordPressで

Posted at

AWSのlightsailのWordPressのメディアへ大きめのファイル(動画とか)をアップロードしようとした際に、「このサイトのアップロードサイズ上限を超えています。」というエラーが出た場合の対処方法についてです。

「wordpress アップロードサイズ上限」とかでググると、.htaccessに追記したりやら、php.iniを変更したりやら、色々と方法が出てきます。

では、AWSのlightsailのWordPressの場合は、どうすればよいか...

答え

How can I increase the PHP upload size limit in my Lightsail Bitnami WordPress instance?(Lightsail Bitnami WordPress インスタンスで PHP のアップロードサイズ制限を増やすにはどうしたらいいですか? )

ざっと手順

1)「php.ini」の一部変更

php.iniのある場所は/opt/bitnami/php/etc/php.iniです。

2)「post_max_size」と「upload_max_filesize」の変更

php.ini
; デフォルトの値
; 694行目付近
post_max_size = 40M

; 846行目付近
upload_max_filesize = 40M 

デフォルトでは、post_max_sizeupload_max_filesizeも、40MBとなっています。この値を、任意の数値へ変更してください。

php.ini(例)
post_max_size = 128M
upload_max_filesize = 64M

注意点はpost_max_sizeの値がupload_max_filesizeの値以上であること。

注意点
post_max_size >= upload_max_filesize ※注意!

upload_max_filesizeは、1つのファイルあたりの最大アップロードサイズで、

post_max_sizeは、アップロード1回あたりのファイル合計サイズの制限のこと。

php.iniを書き換えたら保存。

3)インスタンスの再起動

次のコマンドでサーバーを再起動してください

terminal
$ sudo /opt/bitnami/ctlscript.sh restart

4)確認

ツール > サイトヘルス > サーバー の中で変更後のupload_max_filesize(アップロードの上限ファイルサイズ)post_max_size(PHP POST サイズ上限)を確認できます。

img1111.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?