/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/app
NameSizeModeActions
backups/-0755rm
fonts/-0755rm
languages/-0755rm
media/-0777rm
Solo/-0755rm
templates/-0755rm
tmp/-0755rm
vendor/-0755rm
CHANGELOG.php31420644editdlrm
composer.json8950644editdlrm
composer.lock144430644editdlrm
defines.php8640644editdlrm
htaccess.txt88450644editdlrm
include.php66580644editdlrm
index.php20570644editdlrm
restore.php2581040644editdlrm
version.php2870644editdlrm
Edit: /home/suroeste/public_html/wp-content/plugins/akeebabackupwp/app/index.php (2057B)
appConfig->getDefaultPath(); if (is_file($configPath)) { $akeebaSoloContainer->appConfig->loadConfiguration(); } // Prepare the user manager $manager = $akeebaSoloContainer->userManager; $manager->registerPrivilegePlugin('akeeba', UserPrivileges::class); $manager->registerAuthenticationPlugin('password', UserAuthenticationPassword::class); if (!defined('AKEEBADEBUG')) { $manager->registerAuthenticationPlugin('yubikey', UserAuthenticationYubikey::class); $manager->registerAuthenticationPlugin('google', UserAuthenticationGoogle::class); } // Run the application $application = $akeebaSoloContainer->application; $application->initialise(); $application->route(); $application->dispatch(); $application->render(); $application->close(); } 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; }