IP : 13.59.213.128Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
./
softaculous/
s9y/
../
logic/
../
wp50/
./
../
zen/
_index.php/
/
<?php
/** * root script for Zenphoto * @package zpcore * */ define('OFFSET_PATH', 2); // Changed for softaculous if (!defined('OFFSET_PATH')) die(); // no direct linking
$_zp_script_timer['start'] = microtime(); // force UTF-8 Ø require_once(dirname(__FILE__) . '/global-definitions.php'); require_once(dirname(__FILE__) . '/functions/functions.php'); zp_apply_filter('feature_plugin_load'); if (DEBUG_PLUGINS) { debugLog('Loading the "feature" plugins.'); } foreach (getEnabledPlugins() as $extension => $plugin) { $loadtype = $plugin['priority']; if ($loadtype & FEATURE_PLUGIN) { if (DEBUG_PLUGINS) { list($usec, $sec) = explode(" ", microtime()); $start = (float) $usec + (float) $sec; } require_once($plugin['path']); if (DEBUG_PLUGINS) { pluginDebug($extension, $priority, $start); } $_zp_loaded_plugins[$extension] = $extension; } }