A common error with software like WordPress, Magento, and OpenCart etc is the php "Allowed memory size error." Increasing the memory limit is an easy solution. This memory_limit can be changed in the php.ini in thepublic_html folder in your hosting account. This error can creep up in your website during the normal development process. The following is an example of the error:
Fatal error: Allowed memory size of 436894354 bytes exhausted
(tried to allocate 45785643 ) in Unknown on line xxx
This is because of a php variable data being stored in the memory that is not cleared while the php scripts are running. This can happen with misconfigured software or an over writing of the core php.ini file with another server software application installed. Increasing memory size is not the solution in many cases, and the usual root cause is an issue with configuration of the application rather than the memory limits. Usually there is a memory leak (not unless the website has VERY large data set!
How to fix the Allowed Memory Size Error
Luckilky this is very simple, all you need to do is locate your php.ini located in the public_html folder
- Log in to your cPanel
- Go to your File Manager
- Select the Web root (public_html/www) directory and click Go.
- Locate the php.ini file in the public_html folder. *** If you do not have one there contact Support and our tech staff will restore the php.ini to your public directory where possible.
- Open the php.ini with the Code Editor
- Find the following lines in the php.ini file
-
adjust memory limit memory_limit = 64M max_execution_time = 18000
- Increase the memory_limit value to 256m, if it is already at 256m increase to 512M
- Save the Changes
-
- For your memory limit to take effect you will need to ensure that your php.ini file is recursive!