Wordpress Plugin Installation - Failed to connect to FTP Server - Safest Solution?

后端 未结 7 2024
别那么骄傲
别那么骄傲 2021-02-02 12:23

I succesfully set up a VPS LEMP-stack with Wordpress. When I am trying to install plugins from the WP backend, I am prompted with the following message:

To perfo         


        
相关标签:
7条回答
  • 2021-02-02 13:14

    Remember to set files and directories permission in this way:

    chown -R www-data:www-data /var/www
    find /var/www/ -type d -exec chmod 755 {} \;
    find /var/www/ -type f -exec chmod 644 {} \;
    
    0 讨论(0)
提交回复
热议问题