LoginSignup
82
78

More than 5 years have passed since last update.

PHPのメモリの上限を変更する

Posted at
$ vi /etc/php.ini
$ /memory_limit
----------------------
memory_limit = 128M

CentOSだとデフォルトで128Mに設定されているので、この部分を変更する。

memory_limit = 256M
----------------------
$ :wq
$ service httpd restart

これで完了。
特定のプログラムの実行時のみメモリを変更したい場合は.htaccessに記載するか、もしくはプログラム中で、

ini_set('memory_limit', '256M');

として動的に設定することが可能。

82
78
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
82
78