If you want to upload large number of files in your webserver especially like CMS software it might take hours using standard FTP softwares. Instead to quickly upload the necessary files in your linux os, just follow the steps.
1. Upload the zipped file to your server using SSH. You can use free SSH software like WinSCP.
2. Using the command line in SSH, just unzip the zipped file to the destination folder.
To test the zipped file
unzip -t zip_file_name
To extract the zipped file, use the following command
unzip zip_file_name -d destination_folder
Dont forget to use the -d parameter as otherwise you will have nasty errors. Be careful with permissions as well.
Similar Posts:
- How to unzip ZIP files with PHP
- How to Upload Files using SSH
- How to upload/download files with FTP in linux commandline
- Implementing Secure File Upload in PHP
- Transfer backup files from server to server in command line!
- [Fix] Fatal error: Unable to read 25447 bytes in index.php
- Implementing Secure File Upload in PHP
- Automatic Face Detection in Photos with PHP
- Install FTP Server for Centos/RHEL
- Fix ->Nexgen Slideshow not working with imagerotator.swf

