Online Ftp client that can unrar files

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Online Ftp client that can unrar files

    Can some1 pls help with any online ftp client that can unrar files

    #2
    for the ftp part i think you can easily connect using standard php functions.
    to unrar IN the ftp there must(i suppose, maybe someone knows another way) be an application hosted by the server you connect to.

    connect to the ftp and login with
    Code:
    $ftph = ftp_connect("ftp.exmp.com");
    $login = ftp_login($ftph, "user", "pass");
    Execute the unrar(may change) application
    Code:
    ftp_exec($ftph, "unrar x file.rar");
    Reference:PHP Manual: FTP

    Comment


      #3
      why cant you download winrar?

      Comment


        #4
        https://wapftp.mobi/ can unrar files directly on your ftp server.

        Comment

        Working...
        X