uawdijnntqw1x1x1
IP : 216.73.216.237
Hostname : webd009.cluster130.gra.hosting.ovh.net
Kernel : Linux webd009.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pressec
/
www
/
ads--temp-pour-eviter-les-spams
/
lib
/
xajax
/
lib
/
..
/
..
/
OX
/
Upgrade
/
InstallConfig.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ /** * Reads and store install config * * @package OpenXUpgrade */ class OX_Upgrade_InstallConfig { /** * @var array */ private static $installConfig; /** * Get install section forom /etc/dist.conf.php config file * Returns empyt array if can't read dist.conf.php * * @return array install section of config file */ public static function getConfig() { if (!isset(self::$installConfig)) { $config = @parse_ini_file(MAX_PATH . '/etc/dist.conf.php', true); if (is_array($config) && array_key_exists('install', $config)) { self::$installConfig = $config['install']; } else { return array(); // empty settings on fail } } return self::$installConfig; } }
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/xajax/lib/../../OX/Upgrade/InstallConfig.php