Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The problem with your possible solution is that, unless you are hosting everything on your laptop, anything that you <strong>upload through your website</strong>, even if it ends up on your laptop in the end, will still have to <strong>pass through your website</strong>. </p> <p>Since your website has php upload limits, these limits will be applied to anything that is transferred through your website through php.</p> <p>There are several ways to get around this:</p> <ol> <li><p>Upload everything through FTP (no php).</p> <p>Your hosting service has unlimited FTP uploads ("where no file size limits are applied (except for the account size limit)" <a href="http://www.000webhost.com/forum/web-programming/23596-change-upload-limit.html#post125872" rel="nofollow">source</a>). Since it sounds like you only want a small group of people to be able to upload files, give each of them access to your FTP account. Only one FTP account is allowed for free users. If you aren't a free user give them each an individual FTP account in order to monitor individual usage.</p> <p>Check out <a href="http://www.000webhost.com/faq.php" rel="nofollow">File Upload Questions</a> for some help with FTP.</p></li> <li><p>Use a php file splitter.</p> <p>Since you are limited to a certain size of file per call, use a ready-built php program such as <a href="http://plupload.com" rel="nofollow">Plupload</a> to manage uploading larger files by splitting them into chunks that are small enough to fit through your php limit. If you are trying to upload a 50MB file with a php limit of 5MB, Plupload will make 10 requests (<em>10*5MB=50MB</em>) splitting your file into 10 pieces so that it will pass through the php limit.</p></li> <li><p>Use online file transferring software.</p> <p>Online programs such as <a href="https://www.dropbox.com/" rel="nofollow">Dropbox</a> or <a href="https://www.wetransfer.com/" rel="nofollow">WeTransfer</a> allow you to upload and share large files (2GB for WeTransfer and <a href="https://www.dropbox.com/help/5/en" rel="nofollow">virtually limitless</a> for DropBox). Any files uploaded and downloaded through this method would go through another company's server (not your own) which means that the 5MB limit would definitely not apply. Users can create an account with DropBox and upload to a "<a href="https://www.dropbox.com/help/19/en" rel="nofollow">shared</a>" folder, or simply upload their files to WeTransfer and you will receive an e-mail that you have a file waiting to be downloaded.</p> <p>This method completely skips your server, meaning no 5MB limit, but also meaning that the files won't be stored/accessible on your website.</p></li> </ol> <p>I hope these suggestions are useful or at least give you something to think about.</p> <p>Good Luck!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload