XF 1.2 Fatal Error: Out of memory (allocated 4194304) (tried to allocate 80 bytes)

BassMan

Well-known member
I got this error:
Code:
Error Info
ErrorException: Fatal Error: Out of memory (allocated 4194304) (tried to allocate 80 bytes) - library/XenForo/Model/DataRegistry.php:117
Generated By: Unknown Account
Stack Trace
#0 [internal function]: XenForo_Application::handleFatalError()
#1 {main}
Request State
array(3) {
  ["url"] => string(56) "http://test.com/find-new/27605/posts?page=3"
  ["_GET"] => array(1) {
    ["page"] => string(1) "3"
  }
  ["_POST"] => array(0) {
  }
}

What it could be?
 
PHP is preventied from using more than 4MB of memory. Either you're out or there's a rather insane restriction on the server (PHP's default limit is 128MB). I would contact your host if it happens with any frequency.
 
Top Bottom