Home Products Downloads News Store Support

Stan's Blog

How to synchronize a website with local files

Development Diary Stan's Logbook

Compatible with MS Windows Compatible with MacOS


How to synchronize a website with local files

Topics
How to synchronize a website with local files as fast as possible? It turns out that a few days ago I posted a quick update on maxprog site HTML5 upgrade, Updating an old HTML site to HTML5 and CSS3 about how I managed to perform the task quite successfully during the last months.

After reading it again today I forgot an important part of the process, file synchronization!

How to synchronize a website with local files


Each time you touch a file you have to upload it to your web server in order to publish it. Usually, if I modify single files, I will very likely cycle through uploading, rendering and fixing as many times as needed until I am happy with what I see so I can move on to the next page.

This is usually what I do when the pages are mostly finished and at there final 'polishing' stage. For uploading I use a FTP client software.

Since I am a software developer and I am specialized in internet protocols, including the FTP protocol and I wrote an FTP Client called FTP Disk. So I use my own software, I can even copy URLs from it and preview them in a browser quite easily.

But what if you batch-modify hundreds of files a once? My software has no synchronization feature (yet) and going thru folders and uploading stuff manually is tedious and error-prone. The solution here is RSYNC.

What is RSYNC


RSYNC is a Unix console tool that you use with the macOS terminal. It is a blazing fast and fully reliable file synchronization tool you will really enjoy.

How to synchronize a website with local files

So how do you synchronize a directory? Simple, just launch the terminal and write this:

rsync -rtvz --exclude '.DS_Store' /path/to/local/folder/ user@server:path/to/remote/folder/

Here you have to:

1.- Replace /path/to/local/folder/ with the local directory you want to synchronize.
2.- Replace 'user' with your server account ID (same as ssh id).
3.- Replace 'server' with your server address, the one you would use for ssh.
4.- Replace path/to/remote/folder/ with the remote directory to synchronize

Guess what the --exclude '.DS_Store' parameter does?... Note that you can add more exclude parameters one after the other or even use wildcards.

The RSYNC parameters



- r: Recursive, recurse into directories
- t: Times, preserve times
- v: Verbose, increase verbosity
- z: Compress, compress file data during the transfer

So RSYNC will compare local and remote files in the selected directory recursively, will create a compressed archive of modified files, transfer it to your server and uncompress it to the right location preserving the time info. All in a breeze!

You will even get the list of transferred files on the screen. You can have a full and detailed explanation of the used parameters here.

I recommend you to read the wikipedia rsync page and the man page.

In conclusion, since I am a software developer I have been considering writing an RSYNC front-end to make things much more simple. What do you think, should I?





Recent questions from our users
  451 Error code NEW Screenshot
  Problem sending email to Gmail recipients NEW Screenshot
  What is the meaning of the recipient panel icons NEW Screenshot
  How to create new projects in iCash UPDATED Screenshot
  How to add transactions to iCash faster YouTube Video
  What is the best mail server I can use with MaxBulk Mailer Screenshot
  How can I export my lists to a new computer Screenshot
  How to send a HTML email Screenshot
  How to hide text in my message Screenshot
  How to transfer FTP accounts between computers Screenshot
  Google ending support for less secure apps YouTube Video
  How to add social networks icons to my message Screenshot
  How do I set up an unsubscribe link Screenshot
  How to export several lists into to a single file Screenshot
  Why do I get timeouts when testing given addresses Screenshot

▾ Last videos, Online events and Q&A Sessions ▾
▾ Last customer reviews ▾


Did you like this post?


🔐 Secured by Comodo SSL | UptimeRobot - Site Loaded properly