XF 2.2 Server error

JoyFreak

Well-known member
No idea what triggered it but can someone explain what’s happened here?
Code:
Server error log
ErrorException: Fatal Error: Maximum execution time of 60 seconds exceeded src/XF/Image/Imagick.php:275
Generated by: Vers Nov 29, 2020 at 12:42 AM
Stack trace
#0 [internal function]: XF::handleFatalError()
#1 {main}
Request state
array(4) {
  ["url"] => string(15) "/account/banner"
  ["referrer"] => string(48) "https://www.joyfreak.com/account/account-details"
  ["_GET"] => array(1) {
    ["/account/banner"] => string(0) ""
  }
  ["_POST"] => array(5) {
    ["banner_position_y"] => string(0) ""
    ["_xfToken"] => string(8) "********"
    ["_xfRequestUri"] => string(24) "/account/account-details"
    ["_xfWithData"] => string(1) "1"
    ["_xfResponseType"] => string(4) "json"
  }
}
 
If I had to guess, someone uploaded a large profile banner.

As a workaround, you might want to look at the max_execution_time setting in php.ini. It defaults to 30 seconds, yours is set to 60, but increasing it to 90 might be reasonable.
 
Top Bottom