0
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.

【WordPress】All-in-One WP Migration のアップロード上限を上げる方法【ロリポップ】

Last updated at Posted at 2021-06-21

【STEP1】 ロリポップ管理画面の php.ini の設定を変更

最初にロリポップの管理画面の「PHP設定」でモジュール版からCGI版に変更します。
php.ini の設定画面にある「php_value, php_flagを利用可能にする」の項目を On にします。
「php.iniを設定する」のボタンをクリックします。

スクリーンショット 2021-06-21 18.17.10.png

※モジュール版のままだと「php_value, php_flagを利用可能にする」の項目を変更できません。
※「php_value, php_flagを利用可能にする」の項目を On にすることで、 .htaccess に記述したアップロード上限の設定が有効になります。

【STEP2】 .htaccess に追記

既に WordPress がインストール済みなら .htacccess ファイルが作成されています。
その .htaccess ファイルに下記の 2 行を追記すれば完了です。

php_value upload_max_filesize 900M
php_value post_max_size 900M

※この場合なら、上限が 900 MB になります。

スクリーンショット 2021-06-21 18.11.27.png

0
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
0
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?