Fix WordPress permissions on a Bitnami configuration

Fix WordPress permissions on a Bitnami configuration

Make an SSH connection to your Bitnami server. Then use the three commands below to restore the original WordPress permissions.

sudo chown -R bitnami:daemon /www/wingsdumpcom_619/public
sudo find /www/wingsdumpcom_619/public -type d -exec chmod 0775 {} \;
sudo find /www/wingsdumpcom_619/public -type f -exec chmod 0664 {} \;

Share this post