Error: Allowed memory size of 67108864 bytes exhausted

前端 未结 1 863
陌清茗
陌清茗 2020-12-18 07:37

When I upload a picture

  • File size: 375kb
  • Width: 2000px
  • Height: 3000px

I get an error

ERROR Fatal er

1条回答
  •  失恋的感觉
    2020-12-18 08:29

    It seems you only have 64M (67108864 / 1024 / 1024) allocated to PHP.

    If you have access to your php.ini, increase the max memory size.

    You can also do it in a bootstrap PHP script.

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

    Or even in your .htaccess

    php_value memory_limit 128M
    

    0 讨论(0)
提交回复
热议问题