How to upload video or image with bigger size with HTACCESS
Didalam Katagori: Uncategorized, PHP
uploading images is commonly used in website. so how with uploading video?? we know that video maybe the size is bigger than image basicly. I say the example is the video is 1 MB minimum size. 1 MB is big for image in size. but not in video.
basicly and default in PHP uploading is limited in size. example basicly upload file is limited at 8 MB. if you want to upload more file with size more than 8 MB you can’t do this. except you must do some change in this problem. some way to resolving this problem is with adding new file named is .htaccess.
.htaccess is configuration file to configure server system without chnage php.ini, it means we can sett apache configuration trouhg this file only.
to allow we can upload more bigger size. please do the following step above:
- create file named .htaccess ini base directory site
- write this
php_value upload_max_filesize 300M
php_value post_max_size 300M
php_value memory_limit 300M
- Save to htaccess file’s
- this configuration is means, maximum file size is 300MB either with post variable and memory limitation.


