Hallo,
habe grad ein Problem mit exec und wget, hab schon n bissle im Forum geschaut aber das bringt mich auch nicht wirklich weiter.
Mal eben so 0815 Dahingeklatscht obs funktioniert
Ausgabe:
chdir Status: 1
Dircetory /srv/www/htdocs/web3/html/dls
Command: /usr/bin/wget -o TeamSpeak_Client.exe -i ftp://ftp.freenet.de/pub/4players/te...t_rc2_2032.exe
wget Status:
system failure
Jemand eine Ahnung warum des nicht funktioniert ?
exec() geht nicht, system() geht auch nicht =(
Gruss Toby
habe grad ein Problem mit exec und wget, hab schon n bissle im Forum geschaut aber das bringt mich auch nicht wirklich weiter.
PHP-Code:
<form name="form1" method="post" action="<?php $_SERVER["PHP_SELF"]; ?>">
Source: <input name="link" type="text" id="link" size="100" /><br />
Saved name: <input type="text" name="save_file" size="100" /><br />
<input type="submit" name="send" value="WGet" />
</form>
<?php
if (isset($_POST["send"])) {
$chdir = chdir ("/srv/www/htdocs/web3/html/dls");
print "chdir Status: " . $chdir . "<br />";
if ($chdir) {
print "Dircetory " . getcwd() . "<br />";
$cmd = "/usr/bin/wget -o " . $_POST["save_file"] . " -i " . $_POST["link"];
print "Command: " . $cmd . "<br />";
$exec = exec($cmd);
print "wget Status: " . $exec . "<br />";
if ($exec) {
echo "all done<br />";
} else {
print "exec failure<br />";
}
} else {
print "chdir failure<br />";
}
}
?>
Ausgabe:
chdir Status: 1
Dircetory /srv/www/htdocs/web3/html/dls
Command: /usr/bin/wget -o TeamSpeak_Client.exe -i ftp://ftp.freenet.de/pub/4players/te...t_rc2_2032.exe
wget Status:
system failure
Jemand eine Ahnung warum des nicht funktioniert ?
exec() geht nicht, system() geht auch nicht =(
Gruss Toby
Kommentar