XF 2.0 ErrorException: Fatal Error: Out of memory

KSA

Well-known member
I have been getting this error for quite sometime now although my php setting seems to be reasonable.

  • ErrorException: Fatal Error: Out of memory (allocated 4194304) (tried to allocate 32768 bytes)
  • src/XF/Mvc/Entity/Finder.php:750
  • Generated by: Unknown account
  • May 11, 2018 at 11:07 AM
Stack trace
#0 [internal function]: XF::handleFatalError()
#1 {main}

Any idea what is triggering this issue?



Here is my PHP value


memory_limit 512M


post_max_size 8M

upload_max_filesize 2M
 
  • src/XF/Mvc/Entity/Finder.php:750
Depending on how big your database is, I guess a specific query is causing some issues. You know the time, so, if you have access to something like access.log, you could try and figure out which site or which event is triggering that issue.
 
Last edited:
I will wait for more clarification on this. Access log is parroting same error.
Are you sure about that? Usually, the error would be logged in error.log and not in access.log. access.log would tell you what request was sent to your server at that time, so you could track what caused the issue, if it was due to a page being loaded.
 
Top Bottom