I've deployed a PHP CodeIgniter application on an App Engine and there are two files that need write permission.
Can't find a How-to to help with setting those permissions. Any help?
Thanks!
I've deployed a PHP CodeIgniter application on an App Engine and there are two files that need write permission.
Can't find a How-to to help with setting those permissions. Any help?
Thanks!
According to the docs A PHP App Engine application cannot:
write to the filesystem. PHP applications can use Google Cloud Storage for storing persistent files. Reading from the filesystem is allowed, and all application files uploaded with the application are available.
You might use flex to write to ephemeral (disk initialized on each VM startup)
Edit: You can find the php storage client libraries here, the idea is instead writing files locally, write them and access them from Google Cloud Storage