Wordpress tema güncelleme de klasör yetkisi hatasını gidermek

Wordpress de tema güncellenirken klasör yetkisi hatası alınıyor ise klasör ve dosya yetkilerini vermek için aşağıdaki komutlar kullanılmalıdır.

 

chown www-data:www-data -R wp-content/
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

 

HTTP servisini (Apache, Nginx vs.) yeniden başlatmayı unutmayın.

  • 0 Users Found This Useful
Was this answer helpful?