/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers
NameSizeModeActions
assets/-0777rm
Platform/-0777rm
private/-0755rm
Solo/-0755rm
templates/-0777rm
.htaccess1660644editdlrm
AkeebaBackupWP.php276150644editdlrm
AkeebaBackupWPUpdater.php172940644editdlrm
boot_webapp.php20910644editdlrm
defines.php11180644editdlrm
installation_detected.php23800644editdlrm
integration.php100350644editdlrm
web.config1850644editdlrm
wpinstall.php35910644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/boot_webapp.php (2091B)
input->get->getBool('_ak_reset_session', false)) { $container->session->clear(); } try { // Load the application configuration $container->appConfig->loadConfiguration(); // Prepare the user manager $container->userManager->registerPrivilegePlugin('akeeba', WordpressUserPrivileges::class); $application = $container->application; $application->initialise(); $application->route(); $application->dispatch(); $application->render(); // Persist messages if they exist. if (count($application->messageQueue)) { $application->getContainer()->segment->setFlash('application_queue', $application->messageQueue); } $application->getContainer()->session->commit(); if (defined('AKEEBABACKUPWP_OBFLAG')) { @ob_start(); } } catch (Throwable $exc) { $filename = null; if ($application instanceof Application) { $template = $application->getTemplate(); $filename = APATH_THEMES . '/' . $template . '/error.php'; $filename = @file_exists($filename) ? $filename : null; } if (is_null($filename)) { echo "

Application Error

\n"; echo "

Please submit the following error message and trace in its entirety when requesting support

\n"; echo "
" . get_class($exc) . ' — ' . $exc->getMessage() . "
\n"; echo "
\n";
		echo $exc->getTraceAsString();
		echo "
\n"; return; } include $filename; }