Correct Postman Settings when testing file uploading in Laravel 4?

*爱你&永不变心* 提交于 2019-12-23 03:00:57

问题


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.


回答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.



来源:https://stackoverflow.com/questions/23441991/correct-postman-settings-when-testing-file-uploading-in-laravel-4

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!