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 /
app /
Delete
Unzip
Name
Size
Permission
Date
Action
code
[ DIR ]
drwxr-xr-x
2022-07-04 02:21
design
[ DIR ]
drwxr-xr-x
2020-05-16 07:11
etc
[ DIR ]
drwxrwxrwx
2024-02-15 12:02
.DS_Store
8
KB
-rw-r--r--
2020-05-25 10:44
.htaccess
126
B
-rw-r--r--
2023-01-06 06:58
autoload.php
1.36
KB
-rw-r--r--
2023-01-06 06:58
bootstrap.php
2.48
KB
-rw-r--r--
2023-01-06 06:58
Save
Rename
<?php /** * Register basic autoloader that uses include path * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); use Magento\Framework\Autoload\AutoloaderRegistry; use Magento\Framework\Autoload\ClassLoaderWrapper; /** * Shortcut constant for the root directory */ \define('BP', \dirname(__DIR__)); \define('VENDOR_PATH', BP . '/app/etc/vendor_path.php'); if (!\is_readable(VENDOR_PATH)) { throw new \Exception( 'We can\'t read some files that are required to run the Magento application. ' . 'This usually means file permissions are set incorrectly.' ); } $vendorAutoload = ( static function (): ?string { $vendorDir = require VENDOR_PATH; $vendorAutoload = BP . "/{$vendorDir}/autoload.php"; if (\is_readable($vendorAutoload)) { return $vendorAutoload; } $vendorAutoload = "{$vendorDir}/autoload.php"; if (\is_readable($vendorAutoload)) { return $vendorAutoload; } return null; } )(); if ($vendorAutoload === null) { throw new \Exception( 'Vendor autoload is not found. Please run \'composer install\' under application root directory.' ); } $composerAutoloader = include $vendorAutoload; AutoloaderRegistry::registerAutoloader(new ClassLoaderWrapper($composerAutoloader));