✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium134.web-hosting.com ​🇻​♯➤ 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 162.0.232.104 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.120
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /var/softaculous/presta17//bootstrap.php
<?php
/**
 * For the full copyright and license information, please view the
 * docs/licenses/LICENSE.txt file that was distributed with this source code.
 */

use PrestaShop\PrestaShop\Adapter\ServiceLocator;
use PrestaShop\PrestaShop\Core\ContainerBuilder;
use Symfony\Component\Filesystem\Exception\IOException;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate;
use Symfony\Component\Yaml\Yaml;

$container_builder = new ContainerBuilder();
$legacyContainer = $container_builder->build();
ServiceLocator::setServiceContainerInstance($legacyContainer);

if (!file_exists(_PS_CACHE_DIR_)) {
    @mkdir(_PS_CACHE_DIR_);
    $warmer = new CacheWarmerAggregate([
        new PrestaShopBundle\Cache\LocalizationWarmer(_PS_VERSION_, 'en'), //@replace hard-coded Lang
    ]);
    $warmer->warmUp(_PS_CACHE_DIR_);
}

$configDirectory = __DIR__. '/../app/config';
$phpParametersFilepath = $configDirectory . '/parameters.php';
$yamlParametersFilepath = $configDirectory . '/parameters.yml';

$filesystem = new Filesystem();

$exportPhpConfigFile = function ($config, $destination) use ($filesystem) {
    try {
        $filesystem->dumpFile($destination, '<?php return '.var_export($config, true).';'."\n");
    } catch (IOException $e) {
        return false;
    }

    return true;
};

// Bootstrap an application with parameters.yml, which has been installed before PHP parameters file support
if (!file_exists($phpParametersFilepath) && file_exists($yamlParametersFilepath)) {
    $parameters = Yaml::parseFile($yamlParametersFilepath);
    if ($exportPhpConfigFile($parameters, $phpParametersFilepath)) {
        $filesystem->dumpFile($yamlParametersFilepath, 'parameters:' . "\n");
    }
}

$lastParametersModificationTime = (int)@filemtime($phpParametersFilepath);

if ($lastParametersModificationTime) {
    $cachedParameters = _PS_CACHE_DIR_. 'appParameters.php';

    $lastParametersCacheModificationTime = (int)@filemtime($cachedParameters);
    if (!$lastParametersCacheModificationTime || $lastParametersCacheModificationTime < $lastParametersModificationTime) {
        // When parameters file is available, update its cache if it is stale.
        if (file_exists($phpParametersFilepath)) {
            $config = require $phpParametersFilepath;
            $exportPhpConfigFile($config, $cachedParameters);
        } elseif (file_exists($yamlParametersFilepath)) {
            $config = Yaml::parseFile($yamlParametersFilepath);
            $exportPhpConfigFile($config, $cachedParameters);
        }
    }

    $config = require_once _PS_CACHE_DIR_ . 'appParameters.php';
    array_walk($config['parameters'], function (&$param) {
        $param = str_replace('%%', '%', $param ?? '');
    });

    $database_host = $config['parameters']['database_host'];

    if (!empty($config['parameters']['database_port'])) {
        $database_host .= ':'. $config['parameters']['database_port'];
    }

    define('_DB_SERVER_', $database_host);
    if (defined('_PS_IN_TEST_')) {
        define('_DB_NAME_', 'test_'.$config['parameters']['database_name']);
    } else {
        define('_DB_NAME_', $config['parameters']['database_name']);
    }

    define('_DB_USER_', $config['parameters']['database_user']);
    define('_DB_PASSWD_', $config['parameters']['database_password']);
    define('_DB_PREFIX_',  $config['parameters']['database_prefix']);
    define('_MYSQL_ENGINE_',  $config['parameters']['database_engine']);
    define('_PS_CACHING_SYSTEM_',  $config['parameters']['ps_caching']);

    if (!defined('PS_IN_UPGRADE') && !defined('_PS_IN_TEST_')) {
        define('_PS_CACHE_ENABLED_', $config['parameters']['ps_cache_enable']);
    } else {
        define('_PS_CACHE_ENABLED_', 0);
        $config['parameters']['ps_cache_enable'] = 0;
    }

    // Legacy cookie
    if (array_key_exists('cookie_key', $config['parameters'])) {
        define('_COOKIE_KEY_', $config['parameters']['cookie_key']);
    } else {
        // Define cookie key if missing to prevent failure in composer post-install script
        define('_COOKIE_KEY_', Tools::passwdGen(56));
    }

    if (array_key_exists('cookie_iv', $config['parameters'])) {
        define('_COOKIE_IV_', $config['parameters']['cookie_iv']);
    } else {
        // Define cookie IV if missing to prevent failure in composer post-install script
        define('_COOKIE_IV_', Tools::passwdGen(32));
    }

    // New cookie
    if (array_key_exists('new_cookie_key', $config['parameters'])) {
        define('_NEW_COOKIE_KEY_', $config['parameters']['new_cookie_key']);
    } else {
        // Define cookie key if missing to prevent failure in composer post-install script
        $key = PhpEncryption::createNewRandomKey();
        define('_NEW_COOKIE_KEY_', $key);
    }

    define('_PS_CREATION_DATE_', $config['parameters']['ps_creation_date']);

    if (isset($config['parameters']['_rijndael_key'], $config['parameters']['_rijndael_iv'])) {
        define('_RIJNDAEL_KEY_', $config['parameters']['_rijndael_key']);
        define('_RIJNDAEL_IV_', $config['parameters']['_rijndael_iv']);
    }
}


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Jun 2026 5.21 AM
root / root
0755
bootstrap_old
--
6 Jun 2026 5.20 AM
root / root
0755
images
--
6 Jun 2026 5.20 AM
root / root
0755
php53
--
6 Jun 2026 5.20 AM
root / root
0755
php56
--
6 Jun 2026 5.20 AM
root / root
0755
php71
--
6 Jun 2026 5.20 AM
root / root
0755
php81
--
6 Jun 2026 5.20 AM
root / root
0755
php82
--
6 Jun 2026 5.20 AM
root / root
0755
.htaccess
5.343 KB
4 Nov 2025 5.35 AM
root / root
0644
_bootstrap.php
5.091 KB
3 Apr 2026 1.12 PM
root / root
0644
bootstrap.php
5.013 KB
3 Apr 2026 1.12 PM
root / root
0644
changelog.txt
6.163 KB
5 Jun 2026 9.35 AM
root / root
0644
clone.php
28.359 KB
5 Jun 2026 12.14 PM
root / root
0644
clone_bootstrap.php
5.139 KB
3 Apr 2026 1.12 PM
root / root
0644
edit.php
4.95 KB
5 Jun 2026 12.14 PM
root / root
0644
edit.xml
0.437 KB
3 Jan 2024 9.51 AM
root / root
0644
extend.php
8.484 KB
5 Jun 2026 12.14 PM
root / root
0644
fileindex.php
0.394 KB
3 Apr 2026 1.12 PM
root / root
0644
import.php
6.604 KB
5 Jun 2026 12.14 PM
root / root
0644
info.xml
4.673 KB
5 Jun 2026 9.35 AM
root / root
0644
install.js
1.123 KB
23 Dec 2021 11.54 AM
root / root
0644
install.php
20.888 KB
5 Jun 2026 12.14 PM
root / root
0644
install.xml
1.506 KB
16 Apr 2024 1.24 PM
root / root
0644
md5
1.986 KB
5 Jun 2026 12.14 PM
root / root
0644
new_order.html
56.918 KB
19 Jun 2025 6.46 AM
root / root
0644
notes.txt
2.946 KB
3 Apr 2026 1.12 PM
root / root
0644
order_conf.html
56.125 KB
19 Jun 2025 6.46 AM
root / root
0644
parameters.php
0.811 KB
3 Apr 2026 1.12 PM
root / root
0644
parameters.yml
0.011 KB
23 Dec 2021 11.54 AM
root / root
0644
presta17.sql
706.467 KB
5 Jun 2026 9.35 AM
root / root
0644
presta17.zip
136.68 MB
5 Jun 2026 9.35 AM
root / root
0644
return_slip.html
43.862 KB
19 Jun 2025 6.46 AM
root / root
0644
robots.txt
4.729 KB
19 Jun 2025 6.46 AM
root / root
0644
settings.inc.php
0.022 KB
23 Dec 2021 11.54 AM
root / root
0644
shop1.json
3.157 KB
20 May 2026 10.36 AM
root / root
0644
soft_delete.php
3.078 KB
23 Dec 2021 11.54 AM
root / root
0644
update_appkey.php
0.531 KB
17 Jul 2023 1.33 PM
root / root
0644
update_pass.php
0.485 KB
21 Mar 2023 9.54 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF