用于localhost的Wordpress FTP连接设置,用于上传和安装WooCommerce

时间:2017-06-27 19:18:16

标签: wordpress woocommerce ftp connection credentials

我无法上传WooCommerce .zip文件并在本地主机上安装插件。每次我点击安装按钮Wordpress要求获取FTP凭据的连接信息,如图:enter image description here

即使很难,我输入localhost作为主机名,admin也作为用户名,它不起作用!

4 个答案:

答案 0 :(得分:6)

尝试:

chmod 777 /Applications/XAMPP/xamppfiles/htdocs/wordpress/wp-content/plugins/
chmod 777 /Applications/XAMPP/xamppfiles/htdocs/wordpress/wp-content/themes/

然后将这些内容添加到wp-config.php

/** Add here*/
define('FS_METHOD','direct');
define("FTP_HOST", "localhost");
define("FTP_USER", “my_wordpress_user”);
define("FTP_PASS", “password”);
/** To here*/

在上面一行中,my_wordpress_userpassword是wordpress中使用的。

答案 1 :(得分:3)

只需将define('FS_METHOD','direct');添加到您的wp-config.php中即可。

答案 2 :(得分:2)

好的我通过在我安装Wordpress的htdocs文件夹中编辑 wp-config.php 解决了这个问题 - >像图片1:

image1

我将以下行添加到 wp-config.php ,如图片2

define('FS_METHOD','direct');
define("FTP_HOST", "localhost");
define("FTP_USER", "admin");
define("FTP_PASS", "1234");

image2

用户名和密码与我在安装过程中安装Wordpress时的用户名密码相同。

答案 3 :(得分:0)

推荐:

如果您使用的是centos:

//Set www to 777
# chmod -R 777 /var/www/html
// Change the owner to apache
# chown -R apache:apache /var/www/html
// Restart httpd
# systemctl restart httpd

不推荐,但可以使用:

将此行添加到wp-config.php

define( 'FS_METHOD', 'direct' );