⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
shopware
/
vendor
/
shopware
/
recovery
/
Update
/
View File Name :
index.php
<?php declare(strict_types=1); if (function_exists('opcache_reset')) { opcache_reset(); } require_once __DIR__ . '/../autoload.php'; define('UPDATE_PATH', __DIR__); $isManual = is_dir(SW_PATH . '/update-assets'); if ($isManual) { define('UPDATE_IS_MANUAL', true); define('UPDATE_FILES_PATH', null); define('UPDATE_ASSET_PATH', SW_PATH . '/update-assets'); define('UPDATE_META_FILE', null); } else { define('UPDATE_IS_MANUAL', false); define('UPDATE_FILES_PATH', SW_PATH . '/files/update/files'); define('UPDATE_ASSET_PATH', SW_PATH . '/files/update/update-assets'); define('UPDATE_META_FILE', SW_PATH . '/files/update/update.json'); } use Shopware\Recovery\Update\Console\Application; use Symfony\Component\Console\Input\ArgvInput; error_reporting(\E_ALL & ~\E_DEPRECATED); if (\PHP_SAPI === 'cli') { ini_set('display_errors', '1'); $input = new ArgvInput(); $env = $input->getParameterOption(['--env', '-e'], 'production'); return (new Application($env))->run($input); } $app = require __DIR__ . '/src/app.php'; $app->run();