0

これは私のVesta.phpです。APIリクエストを送信し、内部で使用するためにこれを作成しました

<?php
require 'includes/Config.php';
class VestaAPI {
    private $_instance = null;
    public static function getInstance() {
        if ($_instance == null) {
            $_instance = new VestaAPI();
        }
        return $_instance;
    }
    public static function runCMD($cmd,$arg1 = "",$arg2 = "",$arg3 = "",$arg4 = "",$arg5 = "",$arg6 = "",$arg7 = "",$arg8 = "",$arg9 = "",$arg10 = ""){
    ini_set('max_execution_time', 30);
set_time_limit(30);
        // Server credentials
    $settings = Config::getInstance()->getSettings();
$vst_hostname = $settings["vestaLogin"]["Host"];
$vst_username = $settings["vestaLogin"]["Username"];
$vst_password = $settings["vestaLogin"]["Password"];
$vst_command = $cmd;


// Prepare POST query
$postvars = array(
    'user' => $vst_username,
    'password' => $vst_password,
    'cmd' => $vst_command,
    'arg1' => $arg1,
    'arg2' => $arg2
);
$postdata = http_build_query($postvars);

// Send POST query via cURL
$postdata = http_build_query($postvars);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://' . $vst_hostname . ':81/api/');
curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($ch, CURLOPT_LOW_SPEED_LIMIT, 1);   // cancel if below 1 byte/second
curl_setopt($ch, CURLOPT_LOW_SPEED_TIME, 30);   // for a period of 30 seconds
 curl_setopt($post, CURLOPT_AUTOREFERER, true);
    curl_setopt($post, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($post, CURLOPT_RETURNTRANSFER, 1 );
    curl_setopt($post, CURLOPT_TIMEOUT, 30 );
    curl_setopt(CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)');
return curl_exec($curl);
    }
public static function arrayToXml($array, &$xml){
    foreach ($array as $key => $value) {
        if(is_array($value)){
            if(is_int($key)){
                $key = "e";
            }
            $label = $xml->addChild($key);
            arrayToXml($value, $label);
        }
        else {
            $xml->addChild($key, $value);
        }
    }
}
}

// to get your instance use

?>

しかし、ここでこのコードを実行しようとすると (Web サイトを一時停止するか、一時停止を解除するために)、エラー 500 が発生します。

<?php
require 'includes/Vesta.php';
if(isset($_POST["username"])){}else{die("ERROR 403");}
$output = VestaAPI::runCMD("v-suspend-user",$_POST["username"]);
if(strstr($output, "Error:")) {die($output);}else{
    die("Done!");
}
?>

しかし、アカウントのデータを取得している場合は機能しますが、タイムアウトの問題に違いないと思いますが、ここにphpエラーログがあります

2016/02/15 00:53:55 [エラー] 14102#0: *6 アップストリームは、アップストリームからの応答ヘッダーの読み取り中に接続を途中で閉じました。クライアント: 86.6.39.173、サーバー: testing.DOMAIN.co.uk、リクエスト: "POST /suspendUser.php HTTP/1.1"、アップストリーム: " http://45.58.48.103:8080/suspendUser.php "、ホスト: "testing.DOMAIN.co.uk"、リファラー: " http://testing.DOMAIN. co.uk/

ドメインを DOMAIN に置き換えました

4

1 に答える 1

1

おそらく、vestacp のインストールと同じサーバーから API 要求を実行します。これは、ユーザーのサスペンド/サスペンド解除後に、vestacp Web サービスが再起動されるために発生します。$arg2='no' を設定して Web サービスの再起動を防止し、後で再起動する必要があります。

于 2016-04-03T14:11:00.397 に答える