I get the following error when I log into my website front end. I spoke the web host company and my php memory limit is 80. The data base memory is fine. How can I correct this error.
Fatal error: Out of memory (allocated 68157440) (tried to allocate 38 bytes) in /homepages/42/d336943888/htdocs/gloryofgodministry/libraries/joomla/database/database/mysql.php on line 462
When you see an error that reads “Fatal Error: Allowed memory size of xxxxxx bytes exhausted” either in browser or server logs , that means PHP has exhausted the max memory limit. Mostly, this is due to the insufficient memory allocated for the script which tried to allocate xx more. This is part of the error message that says (tried to allocate xx bytes).
Increase the "memory limit" to a size that totals over the amount you saw in the error.