// Call user function
call_user_func_array(array($app, FrameworkConfiguration::getInstance()->readConfig('entry_method')), array());
} catch (FrameworkException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] The application <strong>%s</strong> has been terminated due to a thrown exception: <strong>%s</strong>",
+ ApplicationEntryPoint::app_die(sprintf("[Main:] The application <strong>%s</strong> has been terminated due to a thrown exception: <strong>%s - %s</strong>",
$application,
+ $e->__toString(),
$e->getMessage()
));
}
// Call user function
call_user_func_array(array($app, FrameworkConfiguration::getInstance()->readConfig('entry_method')), array());
} catch (FrameworkException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] The application <strong>%s</strong> has been terminated due to a thrown exception: <strong>%s</strong>",
+ ApplicationEntryPoint::app_die(sprintf("[Main:] The application <strong>%s</strong> has been terminated due to a thrown exception: <strong>%s - %s</strong>",
$application,
+ $e->__toString(),
$e->getMessage()
));
}
$cfg->setConfigEntry('hash_mask', "%1s:%2s:%3s"); // 1=salt, 2=extra salt, 3=plain password
// CFG: IS-SINGLE-SERVER
-$cfg->setConfigEntry('is_single_server', "N");
+$cfg->setConfigEntry('is_single_server', "Y");
// CFG: POST-REGISTRATION-ACTION
$cfg->setConfigEntry('post_registration_class', "LoginAfterRegistrationAction");