How to extract .rar file on cpanel

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

    How to extract .rar file on cpanel

    How to Extract .rar File on Cpanel Please Help

    #2
    By default its not possible if unrar is installed on the server i think u can do it through php or ssh commands


    Example #1 Rar::extract() example
    Code:
    <?php
    
    $rar_file = rar_open('example.rar') or die("Failed to open Rar archive");
    
    $entry = rar_entry_get($rar_file, 'Dir/file.txt') or die("Failed to find such entry");
    
    $entry->extract('/dir/to'); // create /dir/to/Dir/file.txt
    $entry->extract(false, '/dir/to/new_name.txt'); // create /dir/to/new_name.txt
    
    ?>
    Example #2 How to extract all files in archive:
    Code:
    <?php
    
    
    $filename = "foobar.rar";
    $filepath = "/home/foo/bar/";
    
    $rar_file = rar_open($filepath.$filename);
    $list = rar_list($rar_file);
    foreach($list as $file) {
       $entry = rar_entry_get($rar_file, $file);
       $entry->extract("."); // extract to the current dir
    }
    rar_close($rar_file);
    
    ?>

    Code:
    Task: To open rar (unpack) file in current directory type command:
    
    $ unrar e file.rar
    Task: List (l) file inside rar archive:
    
    $ unrar l file.rar
    Task: To extract (x) files with full path type command:
    
    $ unrar x file.rar
    
    (D) To test (t) integrity of archive, file type command:
    $ unrar t file.rar
    Last edited by GiLL; 24.09.10, 13:26.
    left wap stuff

    Comment


      #3
      or you can use a ftp client what can extract .rar files.
      Unamos los corazones,hoy todos somos multicolores!

      Comment


        #4
        Originally posted by morency View Post
        or you can use a ftp client what can extract .rar files.
        which ftp software support rar extract?

        Comment


          #5
          I dont know... but our wap ftp client can do this
          I will not spam HERE:D
          Unamos los corazones,hoy todos somos multicolores!

          Comment


            #6
            Originally posted by morency View Post
            I dont know... but our wap ftp client can do this
            I will not spam HERE:D
            I tried your wap ftp client nice but it extracted only one .rar file and now doesn't extract more why?

            Comment


              #7
              Originally posted by morency View Post
              or you can use a ftp client what can extract .rar files.
              if am not mistaken you should use privacy policy,Terms of use, do you save user login details etc
              left wap stuff

              Comment


                #8
                @ Gill Thanks For Codes Bro, But when i try to use those first 2 Codes they shows error:
                Fatal error: Call to undefined function rar_open() in /path/ on line 7

                Comment


                  #9
                  You need to have php compiled with rar extension to use that script.
                  No webhost has it installed by default due to licensing issues.

                  Comment

                  Working...
                  X