WordPress'te Could not create directory hatasının çözümü

Wordpress teması yüklemesi sırasında Could not create directory hatası aldığınızda aşağıdaki komutlarla  dosya/klasör izinleri verip çözebilirsiniz.

 

 
chown -R www-data:www-data /var/www
 
find /var/www/ -type d -exec chmod 755 {} \;
 
find /var/www/ -type f -exec chmod 644 {} \;
  • 0 Users Found This Useful
Was this answer helpful?