1

我正在尝试在我的 NSIS 安装程序上验证用户密码,因此我将发送到我的编码 php 脚本以比较值。它似乎根本没有与 php 脚本交互。我相信我的问题可能出在 PHP 中。

<?php
include ("Encryption.php");
$data = $_POST;
$a = new encryption_class();
$encryption = //encryption code;
?>

<html><head>

<title> - </title></head>
<body>
    <? echo $data ?> <br>
    <? echo $encryption;?>

</body>
</html>

当我尝试使用 post 方法将信息从安装程序发送到 php 脚本时,我觉得我错过了一些东西。

抱歉……这是 NSIS 电话

    Section
    SetOutPath $DOCUMENTS/
    StrCpy $1 "userpass"
    #text files for reading and writing with the post command
    File "pass.txt"
    File "encrypt.txt"

    #write the user variable to the pass.txt file
    ClearErrors
    FileOpen $0 pass.txt w
    IfErrors done
    FileWrite $0 "$1"
    FileClose $0
done:
    FileOpen $3 encrypt.txt w
    inetc::post $0 /FILE "http://mywebserver/installer_get_pass.php" $3 /END

SectionEnd

我还没有完成脚本,但是当我打开应该写入输出的 txt 文件时,它是空白的

4

1 回答 1

0

inetc::post $0将(关闭!)文件句柄传递给插件。参数$3类似的问题,尝试使用路径:

...
done:
StrCpy $0 "$documens\pass.txt"
StrCpy $3 "$documens\encoded.txt"
inetc::post $0 /FILE "http://mywebserver/installer_get_pass.php" $3 /END
于 2012-10-16T01:03:49.680 回答