The php error message shows this: “Fatal error: Allowed memory size of 67108864 bytes exhausted…”. 67108864 bytes = 64M. So that means your memory limit is 64M and not 1024M, which is too much memory/set too high. You do not want to set the memory limit too low or too high. 256M is perfect. So what is occurring is the memory limit was not set in the server/website php.ini file: memory_limit = 256M or the server was not rebooted after making the php.ini server configuration file memory_limit setting change.
↧