uawdijnntqw1x1x1
IP : 216.73.216.186
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
/
bak
/
init-delivery-parse.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ /** * @package OpenXDelivery */ /** * The delivery engine's function to parse the configuration .ini file * * @param $configPath The path to the config file * @param $configFile Optional - The suffix of the config file * @param $sections Optional - process sections to get a multidimensional array * * @return mixed The array resulting from the call to parse_ini_file(), with * the appropriate .ini file for the installation. */ function parseDeliveryIniFile($configPath = null, $configFile = null, $sections = true) { // Set up the configuration .ini file path location if (!$configPath) { $configPath = MAX_PATH . '/var'; } if ($configFile) { $configFile = '.' . $configFile; } $host = OX_getHostName(); $configFileName = $configPath . '/' . $host . $configFile . '.conf.php'; $conf = @parse_ini_file($configFileName, $sections); if (isset($conf['realConfig'])) { // added for backward compatibility - realConfig points to different config $realconf = @parse_ini_file(MAX_PATH . '/var/' . $conf['realConfig'] . '.conf.php', $sections); $conf = mergeConfigFiles($realconf, $conf); } if (!empty($conf)) { return $conf; } elseif ($configFile === '.plugin') { // For plugins, if no configuration file is found, return the sane default values $pluginType = basename($configPath); $defaultConfig = MAX_PATH . '/plugins/' . $pluginType . '/default.plugin.conf.php'; $conf = @parse_ini_file($defaultConfig, $sections); if ($conf !== false) { // check for false here - it's possible file doesn't exist return $conf; } echo "Revive Adserver could not read the default configuration file for the {$pluginType} plugin"; exit(1); } // Check for a 'default.conf.php' file $configFileName = $configPath . '/default' . $configFile . '.conf.php'; $conf = @parse_ini_file($configFileName, $sections); if (isset($conf['realConfig'])) { // added for backward compatibility - realConfig points to different config $conf = @parse_ini_file(MAX_PATH . '/var/' . $conf['realConfig'] . '.conf.php', $sections); } if (!empty($conf)) { return $conf; } // Check to ensure Max hasn't been installed if (file_exists(MAX_PATH . '/var/INSTALLED')) { echo "Revive Adserver has been installed, but no configuration file was found.\n"; exit(1); } // Revive Adserver hasn't been installed, so delivery engine can't run echo "Revive Adserver has not been installed yet -- please read the INSTALL.txt file.\n"; exit(1); } if (!function_exists('mergeConfigFiles')) { function mergeConfigFiles($realConfig, $fakeConfig) { foreach ($fakeConfig as $key => $value) { if (is_array($value)) { if (!isset($realConfig[$key])) { $realConfig[$key] = array(); } $realConfig[$key] = mergeConfigFiles($realConfig[$key], $value); } else { if (isset($realConfig[$key]) && is_array($realConfig[$key])) { $realConfig[$key][0] = $value; } else { if (isset($realConfig) && !is_array($realConfig)) { $temp = $realConfig; $realConfig = array(); $realConfig[0] = $temp; } $realConfig[$key] = $value; } } } unset($realConfig['realConfig']); return $realConfig; } } ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/bak/init-delivery-parse.php