Google APP Engine PHP 应用程序上的警告 mkdir() 权限被拒绝
Warning mkdir() Permission Denied on Google APP Engine PHP Application
我是 运行 CodeIgniter PHP Google APP Engine 上的框架,使用 flex 环境。除了一个小问题,一切都很顺利,因为 mkdir 文件权限问题,我无法创建文件夹和上传文件。上传文件和创建文件夹时如何赋予权限?
你的帮助可以节省我很多时间。
您可以通过在 app.yaml
中添加 skip_lockdown_document_root
来 configure 您的 runtime_config
。
By default, the runtime will set a strict read-only permission on all the files and directories under the document_root directory. When set to true, the runtime will skip changing the permission.
runtime_config:
document_root: .
skip_lockdown_document_root: true
我仍然建议使用 Cloud Storage 在无服务器平台上存储或提供文件。
我是 运行 CodeIgniter PHP Google APP Engine 上的框架,使用 flex 环境。除了一个小问题,一切都很顺利,因为 mkdir 文件权限问题,我无法创建文件夹和上传文件。上传文件和创建文件夹时如何赋予权限?
你的帮助可以节省我很多时间。
您可以通过在 app.yaml
中添加 skip_lockdown_document_root
来 configure 您的 runtime_config
。
By default, the runtime will set a strict read-only permission on all the files and directories under the document_root directory. When set to true, the runtime will skip changing the permission.
runtime_config:
document_root: .
skip_lockdown_document_root: true
我仍然建议使用 Cloud Storage 在无服务器平台上存储或提供文件。