Extra Block Types (EBT) - New Layout Builder experience❗

Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.

Demo EBT modules Download EBT modules

❗Extra Paragraph Types (EPT) - New Paragraphs experience

Extra Paragraph Types (EPT) - analogical paragraph based set of modules.

Demo EPT modules Download EPT modules

Scroll

How to unarchive files on server

06/04/2025, by Ivan

Unarchiving Files via Console (SSH)

1. Connect to Your Server via SSH

ssh username@your-server-ip

Replace username and your-server-ip with your actual SSH credentials.

2. Navigate to the Directory

cd /path/to/your/archive

3. Extract Common Archive Types

.zip files

unzip filename.zip

.tar files

tar -xvf filename.tar

.tar.gz or .tgz files

tar -xzvf filename.tar.gz
# or
tar -xzvf filename.tgz

.tar.bz2 files

tar -xjvf filename.tar.bz2

.gz (single file compression, not tar.gz)

gunzip filename.gz

Tip: Use the -C /destination/path/ option with tar if you want to extract to a specific directory:

tar -xzvf filename.tar.gz -C /path/to/extract/

Unarchiving Files via cPanel

1. Login to cPanel

  • Go to https://yourdomain.com/cpanel

  • Enter your cPanel credentials

Login in cPanel
Login in cPanel

2. Open File Manager

  • Navigate to the Files section

  • Click File Manager

File Manager in cPanel
File Manager in cPanel

3. Navigate to Archive Location

  • Browse to the directory where your archive file is stored

And upload the file archive:

Upload archive
Upload archive in cPanel

4. Extract the Archive

  • Right-click on the archive file (e.g., .zip, .tar.gz)

  • Choose Extract

  • A popup will ask where to extract the contents – you can change the path or use the default

  • Click Extract File(s)

cPanel extract archive
Extract command in cPanel

✅ After extraction, a result window will show what files were extracted.