- Le plus récent
- Le plus de votes
- La plupart des commentaires
To resolve the issue with the symbolic links in the initial WordPress install, you can try breaking the symbolic links and replacing them with the actual files. This can be done by executing the following commands:
sudo rm /opt/bitnami/wordpress/domain.com/wp-config.php sudo cp /opt/bitnami/wordpress/wp-config.php /opt/bitnami/wordpress/domain.com/wp-config.php
sudo rm -rf /opt/bitnami/wordpress/domain.com/wp-content sudo cp -r /opt/bitnami/wordpress/wp-content /opt/bitnami/wordpress/domain.com/wp-content
Then, you can update the permissions with the commands you provided:
sudo chown -R bitnami:daemon /opt/bitnami/wordpress/domain.com sudo find /opt/bitnami/wordpress/domain.com -type d -exec chmod 775 {} ; sudo find /opt/bitnami/wordpress/domain.com -type f -exec chmod 664 {} ; sudo chmod 640 /opt/bitnami/wordpress/domain.com/wp-config.php
This should resolve the issue with the symbolic links and allow you to update plugins in the WP admin.
Contenus pertinents
- demandé il y a 3 ans
- demandé il y a 10 mois
- demandé il y a 10 mois
- AWS OFFICIELA mis à jour il y a 2 ans

That worked, thanks!