codeigniter - PHP video upload occur error -


$file_name = $_files['video']['tmp_name'];          echo $file_name; 

when upload image file, response image's tmp_name in php server.

but upload video file, doesn't response video's tmp_name. , check php server, in tmp folder, can't check video's file.

is there condition when upload video file?

if know that, please me.


i choose 2mb video file. think file doesn't check limit.

you can check upload_max_filesize or post_max_size property on php server configuration(php.ini), since video files' sizes large limit. can find relevant information below.

http://php.net/manual/en/ini.core.php#ini.upload-max-filesize

http://php.net/manual/en/features.file-upload.post-method.php


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -