One Hat Cyber Team
Your IP:
216.73.216.75
Server IP:
213.186.33.17
Server:
Linux webm007.cluster106.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
tcherkas
/
balalaika.pro
/
libraries
/
rokcommon
/
Edit File:
include.php
<?php /** * @version $Id: include.php 10831 2013-05-29 19:32:17Z btowles $ * @author RocketTheme http://www.rockettheme.com * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only */ if (!defined('ROKCOMMON')) { function rokcommon_cleanPath($path) { if (!preg_match('#^/$#', $path)) { $path = preg_replace('#[/\\\\]+#', '/', $path); $path = preg_replace('#/$#', '', $path); } return $path; } if (!defined('ROKCOMMON_LIB_PATH')) define('ROKCOMMON_LIB_PATH', rokcommon_cleanPath(dirname(__FILE__))); if (!defined('DS')) define('DS', DIRECTORY_SEPARATOR); // Check to see if there is a requiments file and run it. // Catch any exceptions and log them as errors. $requirements_file = rokcommon_cleanPath(ROKCOMMON_LIB_PATH . '/requirements.php'); if (file_exists($requirements_file)) { try { require_once($requirements_file); } catch (Exception $e) { return; } } define('ROKCOMMON', '3.1.6'); define('ROKCOMMON_CORE_DEBUG', true); // Bootstrap the base classloader and overrides require_once(rokcommon_cleanPath(ROKCOMMON_LIB_PATH . '/RokCommon/ClassLoader.php')); RokCommon_ClassLoader::getInstance(); $container = RokCommon_Service::getContainer(); $container->classloader; // load up the supporting functions $functions_path = rokcommon_cleanPath(ROKCOMMON_LIB_PATH . '/functions.php'); if (file_exists($functions_path)) { require_once($functions_path); } RokCommon_Composite::addPackagePath('rc_context_path', ROKCOMMON_LIB_PATH); } return "ROKCOMMON_LIB_INCLUDED";
Simpan