Mobile app version of vmapp.org
Login or Join
Welton855

: How can I upload large files by chunk, pieces? I have got a little file sharing webpage. It's free to use it. I would like to upload files between 0mb and 1GB. I'm searching in Google since

@Welton855

Posted in: #Uploading

I have got a little file sharing webpage. It's free to use it. I would like to upload files between 0mb and 1GB. I'm searching in Google since two days, but I can't find anything what I needed...

I can upload only 20-30mb now. I would like upload only 1 file at once. But it may be bigger than 500-600mb ... Can anyone help me?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

2 Comments

Sorted by latest first Latest Oldest Best

 

@Pierce454

You can circumvent upload and post limits if you start at the client side. A lot of Flash apps, JAVA apps and JS examples exist, if you google, like "multi upload chunk", things like that.

It depends on your preferences, here is a Javascript example: creativejs.com/tutorials/advanced-uploading-techniques-part-1/
And a Flash one: www.uploadify.com/download/
And a Java based one: jupload.sourceforge.net/
The good thing with a method like this is that you can adjust to your limits on the server side and even display the upload progress.

10% popularity Vote Up Vote Down


 

@Radia820

There is 2 methods that I believe will work for overcome this problem.

Method 1) Edit the php.ini

If the problem is that it seems that your web hosting does not support more than 30mb then it could be the fact that you just need to increase the maximum allowed amount in the php.ini file.

You can edit the php.ini and change the values to:

upload_max_filesize = 1001M
post_max_size = 1001M


You may also need to increase the max_input_time as well.

Method 2) Winrar is your friend

Another solution to your problem is that you can split your files into smaller chunks and then extract them on the server using the File Manager assuming you have a control panel provided which allows for this. While there are lots of file splitters a personal favorite of mine is Rarsoft Winrar. Once you install WinRar you just right click the file you want to split, I've attached a image to display the usual settings you can use.

Winrar Split Example www.bybe.net/downloads/winrar-split-example.jpg

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme