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