views:

39

answers:

2

i'm uploading these files in apache, using php. is there any best way to make uploading faster ?

+1  A: 

Uploading via HTTP isn't the fastest. For such big file cosider using FTP protocol.

ŁukaszW.pl
Wrong: FTP is not faster. There are some protocols which have integrated comrpession (e.g. scp). FTP is no faster than HTTP, indeed HTTP can use compression in both directions therefore can be faster than FTP. But still not recommended for transferring large files
symcbean
A: 

Make sure you enable gzip on the server too http://www.mydigitallife.info/2010/04/17/how-to-enable-gzip-compress-on-php-websites/

Matt Williamson
That refers to compression in the server responses.
Artefacto
I guess you're right, you'll just want to enable mod_gzip or mod_deflate.
Matt Williamson