最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Wordpress Local Install Theme Folder Permission To Edit

programmeradmin1浏览0评论

I have installed WordPress on a local LAMP installation. All I want is to edit the theme files locally on an editor like VS Code where I can open the theme folder and start editing on the go.

But I can't access them, as the access is denied to the whole wordpress directory. I can edit the files in the theme editor. But I want to do this in an external code editor. How can I achieve this. What permissions do I have to change.

I used these permissions during installation.

sudo chown -R www-data:www-data /var/www/wordpress

sudo find /var/www/wordpress/ -type d -exec chmod 750 {} \;
sudo find /var/www/wordpress/ -type f -exec chmod 640 {} \;

Elementary OS 5.1 based on Ubuntu 18.04

I have installed WordPress on a local LAMP installation. All I want is to edit the theme files locally on an editor like VS Code where I can open the theme folder and start editing on the go.

But I can't access them, as the access is denied to the whole wordpress directory. I can edit the files in the theme editor. But I want to do this in an external code editor. How can I achieve this. What permissions do I have to change.

I used these permissions during installation.

sudo chown -R www-data:www-data /var/www/wordpress

sudo find /var/www/wordpress/ -type d -exec chmod 750 {} \;
sudo find /var/www/wordpress/ -type f -exec chmod 640 {} \;

Elementary OS 5.1 based on Ubuntu 18.04

Share Improve this question asked May 19, 2020 at 1:38 GunJackGunJack 1133 bronze badges 1
  • 1 Welcome to StackExchange, GunJack. This is a common problem. By default, web sites are usually configured not to allow editing by users in the web directory. This is a security feature intended to limit a malicious visitor's ability to modify the site contents. There are probably numerous answers on how to set this up either here or on the web in general. Can you please consider adding references to other questions or sites that address your issue and indicating why they aren't the solution you need? – Ted Stresen-Reuter Commented May 19, 2020 at 8:49
Add a comment  | 

1 Answer 1

Reset to default 1

You have to add yourself to group www-data. sudo usermod -a -G www-data yourUserName Don't forget the -a, which appends the new group to your existing groups. Otherwise you loose all other groups.

发布评论

评论列表(0)

  1. 暂无评论