|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 27.43 GB of 70.42 GB (38.96%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
yalagina/
libraries/
- drwxr-xr-x
|
Viewing file: import.php (2.06 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php /** * @package Joomla.Platform * * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */
// Set the platform root path as a constant if necessary. if (!defined('JPATH_PLATFORM')) { define('JPATH_PLATFORM', dirname(__FILE__)); }
// Set the directory separator define if necessary. if (!defined('DS')) { define('DS', DIRECTORY_SEPARATOR); }
// Detect the native operating system type. $os = strtoupper(substr(PHP_OS, 0, 3)); if (!defined('IS_WIN')) { define('IS_WIN', ($os === 'WIN') ? true : false); } if (!defined('IS_MAC')) { define('IS_MAC', ($os === 'MAC') ? true : false); } if (!defined('IS_UNIX')) { define('IS_UNIX', (($os !== 'MAC') && ($os !== 'WIN')) ? true : false); }
// Import the platform version library if necessary. if (!class_exists('JPlatform')) { require_once JPATH_PLATFORM . '/platform.php'; }
// Import the library loader if necessary. if (!class_exists('JLoader')) { require_once JPATH_PLATFORM . '/loader.php'; }
class_exists('JLoader') or die;
// Setup the autoloaders. JLoader::setup();
/** * Import the base Joomla Platform libraries. */
// Import the factory library. JLoader::import('joomla.factory');
// Import the exception and error handling libraries. JLoader::import('joomla.error.exception');
/* * If the HTTP_HOST environment variable is set we assume a Web request and * thus we import the request library and most likely clean the request input. */ if (isset($_SERVER['HTTP_HOST'])) { JLoader::register('JRequest', JPATH_PLATFORM . '/joomla/environment/request.php');
// If an application flags it doesn't want this, adhere to that. if (!defined('_JREQUEST_NO_CLEAN') && (bool) ini_get('register_globals')) { JRequest::clean(); } }
// Import the base object library. JLoader::import('joomla.base.object');
// Register classes that don't follow one file per class naming conventions. JLoader::register('JText', JPATH_PLATFORM . '/joomla/methods.php'); JLoader::register('JRoute', JPATH_PLATFORM . '/joomla/methods.php');
|