Hello! I am using laravel 4 to build my application. I have created a form
to upload images. Localy everything works, I can upload images and save
path in database. The problem is when update application in google app
engine. It doesn't gets the image , because I try: $file =
Input::file('image'); var_dump($file); and it displays NULL. I save images
inside public>assets>uploads>images. May the problem be with app.yaml? This
is my app.yaml:
application: national-test
version: 1
runtime: php
api_version: 1
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /(.+.(css|js|less|ico|png|jpg|woff|ttf|gif))$
static_files: \1
upload: .+.(css|js|less|ico|png|jpg|woff|ttf|gif)$
application_readable: true
- url: /.*
script: public/index.php
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.