gpt4 book ai didi

WordPress 需要 FTP 凭据来更新插件

转载 作者:行者123 更新时间:2023-12-03 08:03:02 26 4
gpt4 key购买 nike

我在 上托管 WordPress AWS EC2 ( Ubuntu ) 并在更新插件时遇到以下错误:

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

rwx权限已授予用户 www-data .这就是我所做的。
<!– language: lang-bash –>

# Add a new group
groupadd www-pub

# Add the user `www-data` to the group 'www-pub'
usermod -a -G www-pub www-data

# Change the ownership of '/var/www/' to 'ubuntu:www-pub'
chown -R ubuntu:www-pub /var/www

# Change the permissions of all the folders to 2775
find /var/www -type d -exec chmod 2775 {} +

# Change the permissions of all the files to 0664
find /var/www -type f -exec chmod 0664 {} +
如您所见, www-data拥有所有正确的权限,但我仍然需要输入 FTP 凭据。是什么原因,我该如何解决?

最佳答案

有一个简单的修复方法。只需编辑文件 wp-config.php 并将此代码写入其中。
首先试试这个:

define('FS_METHOD', 'direct');
注意:不要将其添加到文件末尾,而是添加到文件顶部的数据库信息下方。
define('FTP_USER', 'username'); // Your FTP username
define('FTP_PASS', 'password'); // Your FTP password
define('FTP_HOST', 'ftp.example.org:21'); // Your FTP URL:Your FTP port
另请阅读 this blog post .

关于WordPress 需要 FTP 凭据来更新插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30688431/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com