1

I am creating a theme for opencart but facing issue such as when I upload a small image in image manager it shows in the folder but when I upload a large image(4MB) then folder does not open.

I use Opencart 2.3, all image folders are chmod 777.

I do not what is the problem is causing this error.

DigitCart
  • 2,980
  • 2
  • 18
  • 28

1 Answers1

0

I think, You have get the following Allowed memory size error there.

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 4000 bytes) in /home/public_html/system/library/image.php on line 34

You will need to change Memory limit size in php.ini file for that.

Go to Your site source > admin folder > and Open php.ini file.

And then change memory_limit = 64M; to memory_limit = 128M; and then check it.

HDP
  • 4,005
  • 2
  • 36
  • 58