seppausbayern
Mitglied
Öhh... jo, hi folks (again ?! *g*) !
Ich hab da mal ein kleines Problem... oder eher... öh ..
ich versteh hier was ned *g*
schaut euch mal http://www.shydevil.de/uploadone.php an .
hm...
also, das sind 2 dateien und eine datei mit den variablen zum login .
varas.php = loginvariablen, etc.
ftp.php =
<?php
include("varas.php");
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
if ((!$conn_id) || (!$login_result)) {
echo "Ftp connection has failed!";
die;
} else {
echo "Connected to $ftp_server, for user $ftp_user_name";
}
$upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);
if (!$upload) {
echo "Ftp upload has failed!";
} else {
echo "Uploaded $source_file to $ftp_server as $destination_file";
}
ftp_close($conn_id);
?>
und uploadone.php =
<html>
<head>
</head>
<body bgcolor="#CCCCCC">
<form name='formthing' method='post' action='ftp.php'>
<p>
<?
print "Speichern als..<input type='text' name='destination_file' value='/www.shydevil.de/' size='50'>";
?>
</p>
<p>
<?
print "Was speichern..<input type='text' name='source_file' value='$REMOTE_ADDR\C\' size='50'>";
?>
</p>
<p>
<input type='submit' name='Submit' value='Submit'>
</p>
</form>
</body>
</html>
naja, und nix is... sollte ja eigendlich was zum upload werden *g*
ich wette jetz mal ich hab irgend einen blöden fehler gemacht
oder (mal wieder )nix verstanden.
danke an alle die sich bemüht haben das zeug durchzulesen und zu verstehen
ihr kriegt'n bier *durchreich*
:|
Ich hab da mal ein kleines Problem... oder eher... öh ..
ich versteh hier was ned *g*
schaut euch mal http://www.shydevil.de/uploadone.php an .
hm...
also, das sind 2 dateien und eine datei mit den variablen zum login .
varas.php = loginvariablen, etc.
ftp.php =
<?php
include("varas.php");
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
if ((!$conn_id) || (!$login_result)) {
echo "Ftp connection has failed!";
die;
} else {
echo "Connected to $ftp_server, for user $ftp_user_name";
}
$upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);
if (!$upload) {
echo "Ftp upload has failed!";
} else {
echo "Uploaded $source_file to $ftp_server as $destination_file";
}
ftp_close($conn_id);
?>
und uploadone.php =
<html>
<head>
</head>
<body bgcolor="#CCCCCC">
<form name='formthing' method='post' action='ftp.php'>
<p>
<?
print "Speichern als..<input type='text' name='destination_file' value='/www.shydevil.de/' size='50'>";
?>
</p>
<p>
<?
print "Was speichern..<input type='text' name='source_file' value='$REMOTE_ADDR\C\' size='50'>";
?>
</p>
<p>
<input type='submit' name='Submit' value='Submit'>
</p>
</form>
</body>
</html>
naja, und nix is... sollte ja eigendlich was zum upload werden *g*
ich wette jetz mal ich hab irgend einen blöden fehler gemacht
oder (mal wieder )nix verstanden.
danke an alle die sich bemüht haben das zeug durchzulesen und zu verstehen
ihr kriegt'n bier *durchreich*
:|