Рекомендованные:
Если вы используете Linux:
//Set www to 777
# chmod -R 777 /var/www/html
// Change the owner to apache (centos)
# chown -R apache:apache /var/www/html
// Change the owner to apache (ubuntu)
# chown -R apache:apache /var/www/html
// Restart httpd
# systemctl restart httpd
Не рекомендуется, но работает:
Добавить эту строку в wp-config.php
define( 'FS_METHOD', 'direct' );