如何删除 FTP 详细信息

如何删除 FTP 详细信息

我已经在 Linux 机器( LAMP )上安装了 Wordpres

在管理菜单中,当我删除一个插件时,它会要求提供 FTP 详细信息(如附图所示)。

为什么以及我该如何解决这个问题?

答案1

将其添加到您的 wp-config.php 中,您就根本不需要添加 FTP 登录:

define('FS_METHOD','direct');

http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants

答案2

可以把这些放在 wp-config.php 中

  define('FTP_USER', 'username');
  define('FTP_PASS', 'password');
  define('FTP_HOST', 'ftp.example.org:21');
 //*If you can use a SSL connection set this to true*
 define('FTP_SSL', true);

相关内容