How to Upload a JSP File to the smart FTP?

PHP FTP file upload need to upload multiple files?

  • Hello, I am currently writing a PHP script that uses FTP to transfer images to my web server. I have it all working correctly using the following statement: $upload = ftp_put($conn_id, $target, $temp1, $temp2, FTP_BINARY); Basically I need to upload 4 files and this method will only allow me to upload one. I have tried closing the connections and then restarting them in the same script to allow multiple uploads but I have not been successful. Can anyone help me with getting multiple files uploaded?? Also if this the best way for me to be uploading images to the server???? Some of the images may be quite large (around 3 - 4Mb) or is there a better method of doing this? Thanks, J

  • Answer:

    Hello, you can use that function The following is a fully tested function that recursively puts files from a source directory to a destination directory. NOTE: use full path name for the destination directory and the destination directory must already exist function ftp_putAll($conn_id, $src_dir, $dst_dir) { $d = dir($src_dir); while($file = $d->read()) { // do this for each file in the directory if ($file != "." && $file != "..") { // to prevent an infinite loop if (is_dir($src_dir."/".$file)) { // do the following if it is a directory if (!@ftp_chdir($conn_id, $dst_dir."/".$file)) { ftp_mkdir($conn_id, $dst_dir."/".$file); // create directories that do not yet exist } ftp_putAll($conn_id, $src_dir."/".$file, $dst_dir."/".$file); // recursive part } else { $upload = ftp_put($conn_id, $dst_dir."/".$file, $src_dir."/".$file, FTP_BINARY); // put the files } } } $d->close(); } just put all 4 files in a folder and use that function.

Jake Welton at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.