Error After Upgrade To Ver.4.4.3 And Php 7

after upgrade when products are searched in ADMIN area , appear below error

Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 20480 bytes) in /home/AAA/public_html/app/lib/vendor/imagine/imagine/lib/Imagine/Gd/Image.php on line 602

in line 602 I find

$resource = imagecreatetruecolor($size->getWidth(), $size->getHeight());

How to modify this line ?

You're out of memory... increase the PHP memory limit.

At first try to add the following code in the config.local.php

@ini_set('memory_limit', '1024M');

before

if (!defined('CONSOLE')) {

At first try to add the following code in the config.local.php

@ini_set('memory_limit', '1024M');

before

if (!defined('CONSOLE')) {

Just memory limit to 1024M ?

memory error.png

Just memory limit to 1024M ?

Did it solve the issue?

Did it solve the issue?

For the moment yes, I'll make more tests . Thanks @Flow &@eComLabs

You are welcome!