SSH üzerinden WordPress Dosya İzinlerini Ayarlamak

Klasörler için;
find . -type d -print -exec chmod 755 {} \;

Dosyalar için;
find . -type f -print -exec chmod 644 {} \;

Eğer dosyalar /var/www/html dizininde ise toplu olarak kullanabileceğiniz komut

find /var/www/html -type d -print -exec chmod 755 {} \; && find /var/www/html -type f -print -exec chmod 644 {} \;