Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Unless you’ve installed and configured FTP software on your Droplet, you won’t be able to use FTP and would need to use SFTP.
That said, generally this isn’t required if proper permissions are setup to allow WordPress to read + write. How you’d go about this depends on whether you’re using Apache or NGINX.
On Apache, www-data is the default user that needs to own your files and directories, so if you are running Apache, you’d need to set ownership on the files.
For example, if you’re home directory (where index.php is) is:
/var/www/html
You may need to run:
chown -R www-data:www-data /var/www/html
NGINX works slightly different in that permissions need to be set for the user that is running the PHP process(es). By default, that’s www-data as well, so the same command could be used.