Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

The first question is the one in the title. The second one is: if someone wants to upload data to my public folder, can I limit the size of the file or the folder?

share|improve this question

4 Answers

up vote 4 down vote accepted

No third party can upload anything to your Public folder of Dropbox by default.

However, you can create a JotForm's Dropbox upload form to send files there. You will then need to embed the form into a webpage & host the webpage somewhere. If you don't have web hosting, you can put it into your Public folder of Dropbox since the page is static. The Dropbox link is hard to remember so you can create a "pretty" Bit.ly link, such as bit.ly/Files4DragonSlay3r, and give it out to people.

There are 2 limits in the free version: 100MB of monthly transfer and 100 submissions. There's another universal limit: 50MB per file uploaded.

In case you aren't proficient with HTML, here's template code for the webpage to embed the upload form:

<!DOCTYPE html>
<html>
  <head>
    <title>My upload form</title>
  </head>
  <body>
    REPLACE THIS WITH THE EMBED CODE FROM JOTFORM
  </body>
</html>

Open Notepad (or other simple text editor but not Word, WordPerfect, WordPad, Pages, etc), paste the code into it, then click Save As and name the file dropbox-upload.html or whatever you like as long as it ends in .html. Then move the file into Public.

share|improve this answer

An instructor told me about http://dropitto.me/, which looks like a viable option, but I'm wary of trying it out since it gains access to my whole Dropbox.

share|improve this answer

DBInbox is the best solution I've found by far. Simple multiple file upload totally anonymous and without having to register to a website.

Better than JotForm (which by the way didn't work for me).

share|improve this answer

You can allow anonymous people to upload to your dropbox by following the steps listed here

For posterity:

$uploader = new DropboxUploader('mysecret@domain.com', 'neverguesspswd'); 
$uploader->upload($tmpFile, $_POST['dest']);

However, you should follow the advice from the same thread post before that:

that's very flimsy security-wise, you're opening yourself up to all sorts of crap. not to mention people could effectively DoS your quota or upload pirated material, or what not.

There's plenty of file sending/hosting services, use those.

share|improve this answer
There's plenty of file sending/hosting services, use those. - Any suggestions on one that does allow anonymous uploading? I have been having a hard time finding one. – webworm Jun 13 '12 at 21:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.