Pregunta

I am deploying a laravel app in GAE. I am getting the following problem:

file_put_contents(/base/data/home/apps/s~national-test/1.375571546917553599/app/storage/meta/services.json): failed to open stream: Read-only file system

here I found a solution, but this works for linux and I am using windows 8. Which is equivalent chmod -R 755 app/storage for windows? I really need some help

¿Fue útil?

Solución

If you are having problems only with meta/services.json, just delete it and Laravel will recreate it.

But you can use git itself to set permissions:

git update-index --chmod=775 <file or dir>
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top