这很可能是由于WoordPress无法访问您的文件系统造成的。
将其添加到wp--config中。php与您的FTP信息。
define( \'FS_METHOD\', \'ftpext\' );
define( \'FTP_BASE\', \'/path/to/wordpress/\' );
define( \'FTP_CONTENT_DIR\', \'/path/to/wordpress/wp-content/\' );
define( \'FTP_PLUGIN_DIR \', \'/path/to/wordpress/wp-content/plugins/\' );;
define( \'FTP_USER\', \'username\' );
define( \'FTP_PASS\', \'password\' );
define( \'FTP_HOST\', \'ftp.example.org\' );
define( \'FTP_SSL\', false ); //Set to true if SFTP is enabled on your server
如果这对你有用,请告诉我。