![]() |
Issues with large video uploads php.ini - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Issues with large video uploads php.ini (/showthread.php?tid=27596) |
Issues with large video uploads php.ini - El Forum - 02-15-2010 [eluser]seth.aldridge[/eluser] Hi, I've been working on a video upload site for a while and I'm having an issue with larger files. I have adjusted my php.ini file to allow large files, but I'm still getting errors. Example: Code: upload_max_filesize = 700M SafeMode is off. I can upload smaller videos but I get the error: Code: An Error Was Encountered Does anyone know what the above settings should be? I'm pretty new to PHP and I've done the above by googling around. EDIT - The video is 57 minutes. it is 144 Mb Thanks, Seth Issues with large video uploads php.ini - El Forum - 02-16-2010 [eluser]stommert[/eluser] Hi Seth, I have had the same problem. I changed two things in my php.ini 1. post_max_size 2. upload_max_filesize 3. memory_limit post_max_size is by default 16M (not really sure). the second one is 2M by default (not really sure as well). the third one is the amount of memory that can be allocated by the script (no sure if it helps). Anyway, you have to change those things if they are lower then your 144M. I hope helps. gr Stommert |