File "init_global.php"
Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/_importbuddy/importbuddy/init_global.php
File size: 4.15 KB
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! class_exists( 'backupbuddy_core' ) ) {
require_once( pb_backupbuddy::plugin_path() . '/classes/core.php' );
}
require_once( ABSPATH . 'importbuddy/classes/auth.php' );
// If verification code passed then authenticate early.
if ( pb_backupbuddy::_GET( 'display_mode' ) == 'embed' ) {
Auth::require_authentication();
}
global $importbuddy_file;
$import_serial = backupbuddy_core::get_serial_from_file( $importbuddy_file );
// Create STATE file from INI file (if exists).
/*
if ( file_exists( ABSPATH . 'importbuddy-' . $import_serial . '.ini' ) ) {
//pb_backupbuddy::status( 'details', 'Possible importbuddy .ini file for auto-loading settings found at `' . ABSPATH . 'importbuddy-' . $import_serial . '.ini' . '`.' );
$ini = parse_ini_file( ABSPATH . 'importbuddy-' . $import_serial . '.ini', true );
echo '<br><br><br><br><pre>';
print_r( $ini );
echo '</pre>';
if ( isset( $ini['type'] ) ) { // If type is set then assume it may be a valid ini file for importbuddy and use it.
//pb_backupbuddy::status( 'details', 'Confirmed importbuddy .ini file for auto-loading settings found.' );
$override_state_file = ABSPATH . 'importbuddy-' . $import_serial . '-state.php';
if ( file_exists( $override_state_file ) ) {
@unlink( $override_state_file );
}
if ( false === file_put_contents( $override_state_file, "<?php die('Access Denied.'); // <!-- ?>\n" . base64_encode( serialize( $ini ) ) ) ) {
//pb_backupbuddy::status( 'error', 'Error #48934834: Unable to write state file `' . $override_state_file . '` from ini data. Check permissions.' );
}
}
}
*/
if ( '' != $import_serial ) { // importbuddy has a serial. Look for a default state file that matches.
pb_backupbuddy::$options['log_serial'] = $import_serial;
pb_backupbuddy::save();
if ( file_exists( ABSPATH . 'importbuddy-' . $import_serial . '-state.php' ) ) { // Default state exists.
// If an overriding state file exists then load it over the current state.
$override_state_file = ABSPATH . 'importbuddy-' . $import_serial . '-state.php';
if ( file_exists( $override_state_file ) ) {
$statedata = file_get_contents( $override_state_file );
// Unserialize data; If it fails it then decodes the obscufated data then unserializes it..
if ( !is_serialized( $statedata ) || ( false === ( $return = unserialize( $statedata ) ) ) ) {
// Skip first line.
$second_line_pos = strpos( $statedata, "\n" ) + 1;
$statedata = substr( $statedata, $second_line_pos );
// Decode back into an array.
$statedata = unserialize( base64_decode( $statedata ) );
}
if ( is_array( $statedata ) ) { // Valid content.
// Normalize URLs:
if ( isset( $statedata['siteurl'] ) ) {
$statedata['siteurl'] = rtrim( $statedata['siteurl'], '/' );
}
if ( isset( $statedata['homeurl'] ) ) {
$statedata['homeurl'] = rtrim( $statedata['homeurl'], '/' );
}
//pb_backupbuddy::status( 'details', 'Loaded default state overwrite file data and gave it priority over current state. File: `' . $override_state_file . '`.' );
pb_backupbuddy::$options['default_state_overrides'] = $statedata;
//print_r( pb_backupbuddy::$options['default_state_overrides'] );
pb_backupbuddy::save();
} else {
//pb_backupbuddy::status( 'warning', 'Default state overwrite file found but unable to access it.' );
}
}
}
}
// Handle API calls if backupbuddy_api_key is posted. If anything fails security checks pretend nothing at all happened.
if ( '' != pb_backupbuddy::_POST( 'backupbuddy_api_key' ) ) { // Remote API access.
if ( isset( pb_backupbuddy::$options['remote_api']['keys'] ) && ( count( pb_backupbuddy::$options['remote_api']['keys'] ) > 0 ) ) { // Remote API enabled and 1 or more keys defined.
include( 'classes/remote_api.php' );
backupbuddy_remote_api::localCall( $secure = true, $importbuddy = true );
die();
}
}
if ( pb_backupbuddy::_GET( 'display_mode' ) == 'embed' ) {
pb_backupbuddy::$options['display_mode'] = 'embed';
pb_backupbuddy::save();
}
// ********** ACTIONS (global) **********
// ********** AJAX (global) **********
// ********** CRON (global) **********
// ********** FILTERS (global) **********
// ********** WIDGETS (global) **********
?>