Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

its not working Google App Engine #50

Open
muhammad-shariq opened this issue Jan 31, 2020 · 2 comments
Open

its not working Google App Engine #50

muhammad-shariq opened this issue Jan 31, 2020 · 2 comments

Comments

@muhammad-shariq
Copy link

anybody please help me to resolve this error on Google App Engine Standard Instance.

file_put_contents(/tmp/app/db-blade-compiler/views/c9f4478432ab0186296c78969026ae3c): failed to open stream: No such file or directory

@bbredewold
Copy link

Looks like the directory doesn't get created automatically... I'm looking for a solution too.

@ijpatricio
Copy link

I've just discovered this package, used locally and creating the folder manually solves it.
In the package service provider, i could find the solution.

What really matters is the folder to exist, so there are different ways to achieve.

Just run

php artisan vendor:publish --provider="Flynsarmy\DbBladeCompiler\DbBladeCompilerServiceProvider"

in the server that is giving you error... it doesn't matter if in ssh, or in the deploy script, say when you run the migrations..
Never used google app engine..

Other way is to make the folder locally (with same command),
and just not ignoring it, to make it part of the repo, and this way it will exist everywhere you deploy...

Run the command, edit storage/app/.gitignore

*
!public/
!db-blade-compiler/
!.gitignore

so that it does not ignore that file...

Should get you going!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants