1

Does anybody know what settings to configure when using Postman extension for Chrome for testing file uploading in a Laravel 4 app?

$file = Input::file('media');
var_dump($file);

Returns null.

Postman settings

egekhter
  • 2,067
  • 2
  • 23
  • 32

1 Answers1

1

Turns out check your PHP.ini settings and restart apache and PHP. I was testing video files which exceeded the POST and upload size limits in my configuration, hence the results.

egekhter
  • 2,067
  • 2
  • 23
  • 32
  • Are there any size limits of POSTMAN itself ? can we change that? As I have already changed my php settings but postman not accepting large files. – Always_a_learner Feb 04 '16 at 06:37