- Posts: 3
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Exception Internal error: Could not save load error for plugin Authdb /var/www/html/limesurvey/application/libraries/PluginManager/PluginManager.php(453) 441 } 442 } catch (\Throwable $ex) { 443 // Load error. 444 $error = [ 445 'message' => $ex->getMessage(), 446 'file' => $ex->getFile() 447 ]; 448 $plugin = Plugin::model()->find('name = :name', [':name' => $pluginName]); 449 $saveResult = Plugin::setPluginLoadError($plugin, $pluginName, $error); 450 if (!$saveResult) { 451 // This only happens if database save fails. 452 $this->shutdownObject->disable(); 453 throw new \Exception( 454 'Internal error: Could not save load error for plugin ' . $pluginName 455 ); 456 } 457 } 458 $this->shutdownObject->disable(); 459 return $return; 460 } 461 462 /** 463 * Handles loading all active plugins 464 * 465 * Possible improvement would be to load them for a specific context.
auth_db: OK