Home » Categories » Managed WordPress » Advanced

Unzip files to WordPress with SSH

When you do not have access to a file manager, it is necessary to be able to unzip files from SSH.

Warning: The information in this article is advanced material we make available as a courtesy. Please be advised that you are responsible for properly following the procedures below. Customer Support can't assist with these topics.

  1. Connect to your hosting with FTP.
  2. Upload your .tar.gz file or .zip.
  3. Enable SSH on your hosting account. (How?).
  4. Connect to your package with SSH
  5. Navigate to the directory containing the zipped file.
  6. Use one of the following commands depending if you uploaded a .tar.gz or a .zip file

    Update the the command(s) as follows:

    tar -xvzf source.tar.gz -C destination/
    • source.tar.gz is the name of your .tar.gz file
    • destination is the name of the folder where you want to extract the files
    unzip source.zip -d destination/
    • source.zip is the name of your .zip file
    • destination is the name of the folder where you want to extract the files
0 (0)
Article Rating (No Votes)
Rate this article
  • Icon PDFExport to PDF
Related Articles
Limits on editing files
Added on Tue, Nov 17, 2020
Reset permalinks in WordPress
Added on Tue, Nov 17, 2020
Reset WordPress permalinks in the database
Added on Tue, Nov 17, 2020
Update WordPress permalinks in the database
Added on Tue, Nov 17, 2020
Update WordPress database connection string
Added on Tue, Nov 17, 2020