ActiveX. Exe Dosya İndirme

0 Cevap php

Benim projelerinden biri için bir Web Installer üzerinde çalışıyor ve ActiveX kullanarak. Exe dosyalarını indirmek gerekiyor duyuyorum. Ben promptinğin herhangi diyaloglar download ile bir şey yapmak istemiyorum. Kullanıcı ActiveX onayladıktan sonra, ben dosyaları doğru yere indirilmesini istiyorum, mesela C: \ TEST.

Herhangi bir fikir?

This is what I have so far:

<?php

$filename = "WebLock.exe";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);
?>

<html>
<head>

<title>Test</title>
</head>
<body>
<center><b>Downloading Required Files...</b></center>
<script>
function IEsave(filename, sData) {
    var fso, a;
    fso = new ActiveXObject("Scripting.FileSystemObject");
    file = fso.CreateTextFile(filename, 2, false);
    file.write(<?php echo $contents ?>);
    file.Close();
    return file;
}

alert(IEsave("C:\\WebLock.exe", ""));

</script>
Complete!
</body>
</html>

Tek sorun bu dosyayı yazmaz, olduğunu.


Here is the actual page:

Here is the published page!

0 Cevap