Re: WordPress on Ubuntu 18.04 file ownership and permissions issue

2020-07-03 Thread Keith Smith via PLUG-discuss
Problem solved: sudo chown -R www-data:myusername /var/www/vhost then sudo find /path/to/your/wordpress/install/ -type d -exec chmod 775 {} \; sudo find /path/to/your/wordpress/install/ -type f -exec chmod 664 {} \; --- On 2020-07-03 11:41, Keith Smith via PLUG-discuss wrote: I have a

WordPress on Ubuntu 18.04 file ownership and permissions issue

2020-07-03 Thread Keith Smith via PLUG-discuss
I have a development server setup in my office and am trying to edit remote (from another computer.) Server is running stock Ubuntu 18.04 with a LAMP configuration. I have an install of WordPress at /var/www/vhost/test/public_html The user is bill. Editor is Visual Studio Code.