matvespa Posted September 30, 2010 Share Posted September 30, 2010 I need to do an upload a file size up to 100MB. I tried editing the .htaccess but it seem not to be working either. Here is my .htaccess code: php_flag safe_mode off php_value max_execution_time 1000 php_value session.gc_maxlifetime 14000 php_value output_buffering on php_value upload_max_filesize 104857600 php_value post_max_size 104857600 Is there anything wrong with this? Do i need to edit anything from the processpage? Here is the size limit i define in my processpage: define ("MAX_SIZE","104857600"); Is this right? Please help me out with this. Thank you in ADVANCE!! Quote Link to comment https://forums.phpfreaks.com/topic/214823-upload-100mb/ Share on other sites More sharing options...
JonnoTheDev Posted September 30, 2010 Share Posted September 30, 2010 Does your web host allow you to change these values? Do you also know that Apache has a timeout value? Using a standard form file field to upload a file of that size is a bad move. You need a more complex upload procedure. I would recommend using http://sourceforge.net/projects/uber-uploader/ Quote Link to comment https://forums.phpfreaks.com/topic/214823-upload-100mb/#findComment-1117569 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.