Jump to content

Upload 100MB?


matvespa

Recommended Posts

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!!

Link to comment
https://forums.phpfreaks.com/topic/214823-upload-100mb/
Share on other sites

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/

Link to comment
https://forums.phpfreaks.com/topic/214823-upload-100mb/#findComment-1117569
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.