Magento – PHP memory limit, Magento 2.3

magento2memoryPHP

Trying to fix the PHP memory limit issue when installing an extension.

PHP Issue

I made all the possible configurations, I do not have access to an SSH but everything seems to have correct values,

PHP website config


I made the steps provided, unfortunately, the problem still occurs.

I opened a support ticket with the server provider and they said it's a Magento Installation problem, however, I tried installing it several times and none of that helped.

As it's a shared host I am using could that type of server affect it in some way?

Best Answer

  1. In php.ini, change your needed value in memory_limit parameter then save.
  2. Restart Apache
  3. Clean your browser cache.

  4. If that doesn’t do the trick, try editing your .htaccess file and add the following code at the bottom:

    php_value memory_limit 1024M

Related Topic