FTP or Cpanel installation of WordPress

Unless the hosting provider adds in some custom plugins, there should be no difference in the actual installation of WordPress when using a cPanel 1-click option or uploading directly via FTP. Once the site is installed, there is not really any more interaction with cPanel, other than being able to easily delete the database and … Read more

Website does not reflect changes on live after uploading files via FTP

There is a difference between WordPress files you upload on your FTP, and WordPress “content” that is stored in your database. For your content to be updated, you have to migrate your WordPress database online. Resources: This link explains how you can migrate your WordPress website entirely https://www.wpexplorer.com/migrating-wordpress-website/ For example, has stated by @WebElaine, you … Read more

Allow SFTP but disallow SSH?

Starting with version 4.9 OpenSSH (not available in centos 5.x but ChrootDirectory feature was backported) has an internal-sftp subsystem: Subsystem sftp internal-sftp And then block other uses: Match group sftponly ChrootDirectory /upload/%u X11Forwarding no AllowTcpForwarding no AllowAgentForwarding no ForceCommand internal-sftp Add your users to the sftponly group. The chroot directory must be owned by root, … Read more

How to use rsync over FTP

You don’t. rsync can’t do that for you, it is a protocol of its own and doesn’t work over FTP. You might, however, want to try csync. IIRC it provides rsync-like behaviour over HTTP. I can’t comment on whether it works over FTP, you’ll have to try it.