1、 chmod -R 777 wordpress #提高网站文件夹权限
2、在wp-config.php末尾加上下面的代码片段:
if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );
}
参考:安装主题 Unable to locate WordPress Content directory (wp-content)