| Server IP : 62.173.141.34 / Your IP : 216.73.217.113 Web Server : Apache/2.4.63 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux server7.msonline.ru 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : izihss ( 1005) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/izihss/web/izihss.ru/public_html/wp-content/plugins/wp-filebase/ |
Upload File : |
<?php
error_reporting(0);
ini_set( 'display_errors', 0 );
define('SUPPRESS_LOADING_OUTPUT', empty($_REQUEST['noob']));
define('NGG_DISABLE_RESOURCE_MANAGER', true); // NexGen Gallery: ne resource manager
if(defined('DOING_AJAX') && DOING_AJAX)
define('WP_DEBUG_DISPLAY', false);
function wpfb_on_shutdown()
{
$error = error_get_last( );
if( $error && ($error['type'] == E_ERROR || $error['type'] == E_RECOVERABLE_ERROR || $error['type'] == E_PARSE) /*$error['type'] != E_STRICT && $error['type'] != E_NOTICE && $error['type'] != E_WARNING && $error['type'] != E_DEPRECATED*/ ) {
//$func = function_exists('wpfb_ajax_die') ? 'wpfb_ajax_die' : 'wp_die';
wp_die(json_encode($error)); // this will choose handler based on wp_die_ajax_handler filter!
} else { return true; }
}
register_shutdown_function('wpfb_on_shutdown');
if((!empty($_REQUEST['fastload']) || (defined('FASTLOAD'))) && !defined('WP_INSTALLING'))
define('WP_INSTALLING', true); // make wp load faster
if(SUPPRESS_LOADING_OUTPUT)
{
define('WPFB_OB_LEVEL_PL', @ob_get_level());
@ob_start();
}
if ( defined('ABSPATH') )
require_once(ABSPATH . 'wp-load.php');
else
require_once(dirname(__FILE__).'/../../../wp-load.php');
error_reporting(0);
ini_set( 'display_errors', 0 );
// check if WP-Filebase is active
/*
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
$wpfb_rpath = basename(untrailingslashit(dirname(__FILE__))).'/wp-filebase.php';
if(!is_plugin_active($wpfb_rpath))
wp_die("WP-Filebase ($wpfb_rpath) not active.<!-- FATAL ERROR: WP-Filebase DISABLED -->");
*
*/
if(defined('WP_ADMIN') && WP_ADMIN) {
require_once(ABSPATH.'wp-admin/admin.php');
} else {
if(!function_exists('get_current_screen')) {
function get_current_screen() { return null; }
}
if(!function_exists('add_meta_box')) {
function add_meta_box() { return null; }
}
}
if(SUPPRESS_LOADING_OUTPUT) {
//@ob_flush(); @flush();
// restore ob_level
while( (@ob_get_level() > WPFB_OB_LEVEL_PL) && @ob_end_clean()){} // destroy all ob buffers
}
if(defined('WP_INSTALLING') && WP_INSTALLING) {
require_once(dirname(__FILE__).'/wp-filebase.php'); // load wp-filebase only, no other plugins
wpfb_loadclass('Core');
}
WPFB_Core::InitDirectScriptAccess();