簡體   English   中英

為什么相同的PHP UnityWebRequest在plesk服務器上不起作用,但在我的本地主機上起作用?

[英]Why does the same php UnityWebRequest does not work on plesk server but works on my localhost?

我正在統一開發一個應用程序,目前正在編寫登錄功能。 我還為plesk中的用戶創建了一個數據庫。 到目前為止,我一直在正常地從apache本地主機更新和插入新用戶。 我將我的php文件復制到了托管服務器,現在得到的所有響應均為null,響應錯誤為“未知錯誤”。

我嘗試使用@_GET直接從瀏覽器中撥打電話,這些電話可以正常工作。 我還致電plesk支持團隊,他們說它應該可以工作,我可以嘗試檢查服務器使用的php版本並將其與我的匹配。 依然沒有。

PHP代碼

 if(@$_POST['cmd'] == 'login_mobile'){

    $username_input = $_POST["username"];
    $password_input = $_POST["password"];

    //to prevent mysql injections
    $username = stripcslashes($username_input);
    $password = stripcslashes($password_input);

    $query = "SELECT * FROM users WHERE first_name='$username'";
    $response = mysqli_query($dbc, $query);

    //check password
    $row = mysqli_fetch_array($response);
    if( $row['first_name'] == $username && $row['phone'] == $password ){
        $user_id = $row['id'];

        $query2 = "SELECT * FROM conversation WHERE creator_id='$user_id'";
        $response2 = mysqli_query($dbc, $query2);
        $row2 = mysqli_fetch_array($response2);

        $query_set_active = "UPDATE users SET is_active = 1 WHERE id='$user_id'";
        $response_active = mysqli_query($dbc, $query_set_active);

        echo 'Login success,' . $row['id'];
    }
    else{   
        echo 'fail';
    }   
    die;
}

統一代碼C#(請求)

IEnumerator Connection(string first_name, string password)
{
    WWWForm conn = new WWWForm();
    conn.AddField("cmd", "login_mobile");
    conn.AddField("username", first_name);
    conn.AddField("password", password);

    UnityWebRequest response = UnityWebRequest.Post("https://www.katiawashere.gr/qr/func/get_user_info.php", conn);

    yield return response.SendWebRequest();

    if (String.IsNullOrEmpty(response.error))
    {
        if (response.downloadHandler.text.Contains("Login success"))
        {
            serverResponseUi.text = "Login successfull";

            string[] splitedResponse = response.downloadHandler.text.Split(new string[] { "," }, StringSplitOptions.None);

            //Set the user id
            int.TryParse(splitedResponse[1], out StaticHolder.userid);
            SceneManager.LoadScene("Chatter");
        }
        else
        {
            serverResponseUi.text = "Could not Login";
        }
    }
    else
    {
        serverResponseUi.text = "Cannot connect to server: " + response.error;
    }
}

這是實際上響應https://www.katiawashere.gr/qr/func/get_user_info.php?cmd=login_mobile&username=User&password=696969的鏈接。 但是,該請求返回null,並且請求錯誤為“未知錯誤”。 我感覺就像在大海撈針,任何反饋都得到了評價。

使用https您必須實現UnityWebRequest-certificateHandler,例如Unity中的示例

// Based on https://www.owasp.org/index.php/Certificate_and_Public_Key_Pinning#.Net
class AcceptAllCertificatesSignedWithASpecificKeyPublicKey : CertificateHandler
{
    // Encoded RSAPublicKey
    private static string PUB_KEY = "30818902818100C4A06B7B52F8D17DC1CCB47362" +
        "C64AB799AAE19E245A7559E9CEEC7D8AA4DF07CB0B21FDFD763C63A313A668FE9D764E" +
        "D913C51A676788DB62AF624F422C2F112C1316922AA5D37823CD9F43D1FC54513D14B2" +
        "9E36991F08A042C42EAAEEE5FE8E2CB10167174A359CEBF6FACC2C9CA933AD403137EE" +
        "2C3F4CBED9460129C72B0203010001";

    protected override bool ValidateCertificate(byte[] certificateData)
    {
        X509Certificate2 certificate = new X509Certificate2(certificateData);
        string pk = certificate.GetPublicKeyString();
        if (pk.Equals(PUB_KEY))
            return true;

        // Bad dog
        return false;
    }
}

或替代(不安全地僅接受所有ssl證書)

class AcceptAllCertificates : CertificateHandler
{
    protected override bool ValidateCertificate(byte[] certificateData)
    {
        return true;
    }
}

並在您的請求中使用它

UnityWebRequest response = UnityWebRequest.Post("https://www.katiawashere.gr/qr/func/get_user_info.php", conn);

response.certificateHandler = new AcceptAllCertificatesSignedWithASpecificKeyPublicKey();

//or
response.certificateHandler = new AcceptAllCertificates();

yield return response.SendWebRequest();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM