Correct mail server settings when testing file uploads in Laravel 4?

Does anyone know what settings to configure when using the Postman extension for Chrome to test file downloads in a Laravel 4 application?

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

Returns null.

Postman settings

+1
post php laravel-4 postman
source share
1 answer

Turns out to check your PHP.ini settings and restart apache and PHP. I tested video files that exceeded the POST limits and loaded the size limits in my configuration, hence the results.

+1
source share

All Articles