Home Forums WoodMart support forum Fatal error Reply To: Fatal error

#58343

betterend
Participant

Hi,

I have checked with the hosting provider and they said the following:

“”Thank you for your patience on the matter I have reviewed the current configuration of your application and the memory limit is currently set to 1GB as you can verify from the line in the wp-config.php file:

> define(‘WP_MEMORY_LIMIT’, ‘1024M’);

which is already a very high value for a WordPress based application, however, it seems that the same is still not high enough for the process to be executed as can be verified from the error message:

> Allowed memory size of 1073741824 bytes exhausted (tried to allocate 568332288 bytes)

as you can see from the output above the memory limit of 1024MB has was not enough and the application tried to allocate another 568 MB

I have then increased the memory limit to 2GB as you can verify from the following line:

> define(‘WP_MEMORY_LIMIT’, ‘2048M’);

However, the application once again threw the error as you can verify from the output below:

> Allowed memory size of 2147483648 bytes exhausted (tried to allocate 1205866496 bytes)

As you can see from the output above the process exhausted the 2GB of memory and tried to allocate another 1.2GB

It seems that regardless of the limit that you place from the process the same is trying to allocate more and more ram each time allocating 50% more ram which is definitely not normal.

With that in mind, my recommendation is to review this matter with the assistance of a certified web developer which will be able to review your application and further investigate why the processes of your application are using so much ram.”

I appreciate if would mind please let me know how can i solve this problem.

Thank you,