i currently working on web based ftp system where this system will upload and retrieve file from ftp server in red hat linux 9.0.
here is the php cording for the upload file:-
1.upload.html
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data" name="form1" >
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>user name </td>
<td><input name="username" type="text" id="username"></td>
<td> </td>
</tr>
<tr>
<td>password</td>
<td><input name="password" type="password" id="password"></td>
<td> </td>
</tr>
<tr>
<td>File name </td>
<td><input type="file" name="file"></td>
<td> </td>
</tr>
<tr>
<td><input type="submit" name="Submit" value="Upload"></td>
<td> </td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
2.upload.php
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
//$ftp_server=$_POST['server'];
$ftp_server = "10.1.45.21";
$ftp_user_name=$_POST['username'];
$ftp_user_pass=$_POST['password'];
$source_file=$_FILES['file']['name'];// retrieve name of the file to be uploaded
$destination_file=$source_file;
// make a connection to the ftp server
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id , $ftp_user_name , $ftp_user_pass);
// check connection
if((!$conn_id)||(!$login_result)){
echo "FTP connection has failed!" ;
echo "Attempted to connect to $ftp_server for user $ftp_user_name" ;
exit;
}else{
echo "Connected to $ftp_server, for user $ftp_user_name" ;
}
// upload the file
$upload = ftp_put($conn_id,$destination_file,$source_file,FTP_ASCII );
// check upload status
if(!$upload){
echo "FTP upload has failed!" ;
}else{
echo "Uploaded $source_file to $ftp_server as $destination_file" ;
}
// close the FTP stream
ftp_close($conn_id);
?>
</body>
</html>
when i execute this code it give me the following error:-
Connected to 10.1.45.21, for user sanya
Warning: ftp_put(forum.txt) [function.ftp-put]: failed to open stream: No such file or directory in D:\AppServ2\AppServ\www\FTP\test\upload.php on line 32
FTP upload has failed!
Can any one help me plz..