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 1 year has passed since last update.

saltAdvent Calendar 2022

Day 6

【WordPress】php.iniを編集するプラグイン「Custom PHP Settings」

Last updated at Posted at 2022-11-30

WordPressでアップロードファイル上限を管理画面から変更したい時は「Custom PHP Settings」というプラグインを使ってphp.iniファイルを編集し対応してます。

php.iniファイルでは、PHPの初期設定の変更を定義することができます。

このファイルを編集することでファイルのアップロード上限を変更することも可能です。

php.iniファイルで設定できること

  • エラー表示
  • メモリ管理
  • セキュリティー
  • 文字コード
  • タムゾーン
  • ログ

Custom PHP Settings

使い方

  1. インストールと有効化

    有効化が完了すると管理画面メニューのツールにCustom PHP Settingsが表示されます。

  2. 管理画面 > ツール > Custom PHP Settings をクリック。

  3. 画面上部の「General」タブをクリックし、入力エリアにコードを記述。

    アップロードファイル上限を変更する場合は次のコードを追加します。

    upload_max_filesize=500M
    post_max_size=500M
    memory_limit=500M
    

    上記の場合、アップロード上限が500MBに変更されます。

  4. チェックボックス「If this option is selected the .htaccess or user INI file will be restored when the plugin is deactivated or uninstalled.」にチェックを入れる。

  5. 「Save Sattings」をクリック。

以上でphp.iniにコードを追加できました!

参考

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?