Google Cloud bitnami wordpress 安装权限

Google Cloud bitnami wordpress installation permissions

我已经在 google 云中安装了 Bitnami Wordpress Multisite。我还设置了 SSH,我可以通过 SSH 连接,但我想去 wordpress 安装和编辑文件/上传插件/编辑权限。关于我如何做到这一点的任何想法。我遵循了 bitnami 的指南,但它仍然不允许我。

Bitnami WordPress Multisite 的云图像已经配置了正确的权限,允许您使用 WordPress 管理面板安装或上传插件、编辑任何文件等。

但是,如果您使用的是旧版本的 WordPress,您可能会发现一些权限问题。如果是您的情况,您可以尝试以下解决方法:

  • 打开/opt/bitnami/apps/wordpress/htdocs/wp-config.php
  • 寻找define('FS_METHOD', 'ftptext');
  • 替换为define('FS_METHOD', 'direct');
  • 更改 /opt/bitnami/apps/wordpress/htdocs 的权限以允许服务器用户 (daemon) 进行修改。您可以通过执行 sudo chown -R daemon /opt/bitnami/apps/wordpress/htdocs
  • 转到 WordPress 管理面板并检查您是否可以执行所需的操作。

希望对您有所帮助。

For security reasons, WordPress files are not editable from the WordPress application itself. We would suggest using an FTP client to edit the files remotely.

Another option is to change the permissions to be able to edit from the WordPress application temporarily. Note that this configuration is not secure so please revert it after editing the files temporarily:

sudo chown daemon:daemon /opt/bitnami/apps/wordpress/htdocs/
  • 之后还原更改以确保安全..

对于 /wp-content 文件夹

sudo chown -R bitnami:daemon /opt/bitnami/apps/wordpress/htdocs/wp-content
sudo chmod -R g+w /opt/bitnami/apps/wordpress/htdocs/wp-content

https://docs.bitnami.com/google/apps/wordpress/