Activity Stream
48,167 MEMBERS
62687 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 3 of 3
  1.     
    #1
    Member
    Website's:
    satiq.net

    Default Ftp REUpload

    Hi, I'm using that comand to upload to ftp with php:

    PHP Code: 
    ftp_put($connect$destination_file$source_fileFTP_BINARY
    but how can I reup that file, for example max 5 times, if upload failed?

    Thanks
    skinner Reviewed by skinner on . Ftp REUpload Hi, I'm using that comand to upload to ftp with php: ftp_put($connect, $destination_file, $source_file, FTP_BINARY) but how can I reup that file, for example max 5 times, if upload failed? Thanks Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    http://www.w3schools.com/php/func_ftp_put.asp
    http://php.net/manual/en/function.ftp-put.php
    This function returns TRUE on success and FALSE on failure.
    PHP Code: 
    $ok=false;
    $tries=0;
    while (!
    $ok && $tries<4) {
      
    $tries++;
      if (
    ftp_put($connect$destination_file$source_fileFTP_BINARY))
        
    $ok=true;


  4.     
    #3
    Member
    PHP Code: 
    $i 1
    for ($i 1$i<6;i++)
    {
      if (!(
    ftp_put($connect$destination_file$source_fileFTP_BINARY)))
      {
        
    $i++;
          if (
    $i >= 5)
          {
            break;
          }
      }else{
         break;
      }


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Review: reupload.me
    By mcmoore in forum Site Reviews
    Replies: 0
    Last Post: 8th Sep 2012, 01:14 PM
  2. Just reupload it!
    By ReUpload in forum Site Reviews
    Replies: 197
    Last Post: 29th Oct 2011, 08:20 PM
  3. Reupload service's
    By master12 in forum Webmaster Discussion
    Replies: 0
    Last Post: 29th Jun 2011, 03:24 PM
  4. Do you reupload files in RS-MU?
    By elpirata in forum Webmaster Discussion
    Replies: 3
    Last Post: 23rd Feb 2011, 07:20 PM
  5. Mass Reupload
    By vgnheart in forum Completed Transactions
    Replies: 3
    Last Post: 24th Jan 2010, 03:51 PM

Tags for this Thread

BE SOCIAL