Better interface for file downloads and uploads from a web page? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T00:31:41Zhttp://stackoverflow.com/feeds/question/380835http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/380835/better-interface-for-file-downloads-and-uploads-from-a-web-page3Better interface for file downloads and uploads from a web page?gerdemb2008-12-19T12:22:51Z2008-12-19T19:10:58Z
<p>I have what seems like a typical usage scenario for users downloading, editing and uploading a document from a web page.</p>
<ol>
<li>User clicks a link to download a document</li>
<li>User edits downloaded file</li>
<li>User saves the file</li>
<li>User goes back to the web page and uploads the new file with the changes</li>
</ol>
<p>The problem is that downloaded files are typically saved in a temporary directory, so it can be difficult to find the file after it is saved. The application is for very non-technical users, and I can already imagine the problems with saved files being lost or the wrong versions being uploaded. </p>
<p>Is there a better way? Things I've thought about:</p>
<ol>
<li>Using Google Docs or something similar.
Problems: forcing users to use new
application with less features,
importing legacy content, setting up
accounts for everyone to edit a
file.</li>
<li>Using WebDAV to serve the files. Not sure how this would work exactly, but seems like it should be possible</li>
<li>Some kind of Flash or Java app that manages downloads and uploads. Not sure if these even exist.</li>
<li>User education :)</li>
</ol>
<p>If it matters, the files will be mostly Word and Powerpoint documents. </p>
http://stackoverflow.com/questions/380835/better-interface-for-file-downloads-and-uploads-from-a-web-page/380899#380899-1Answer by Andrew Gwozdziewycz for Better interface for file downloads and uploads from a web page?Andrew Gwozdziewycz2008-12-19T12:59:19Z2008-12-19T19:10:59Z<p>Why don't you simply add a replace button next to the download button, so instead of uploading, they "replace" it? Then, there's no ambiguity as to which file is being replaced. They're telling you explicitly.</p>
<p><strong>Edit</strong> - Why is this getting downvoted? Does it not provide a legitimate answer to the question? Is the question not, how do I let people download something and then reupload an edited version? I don't get it.</p>
http://stackoverflow.com/questions/380835/better-interface-for-file-downloads-and-uploads-from-a-web-page/380936#3809360Answer by Corey Maass for Better interface for file downloads and uploads from a web page?Corey Maass2008-12-19T13:15:18Z2008-12-19T13:15:18Z<p>Clear instructions to save to their desktop is a start. Then clear instructions to go to the desktop to re-up it. I've not run across an online MSWord viewer/editor or whatever format the file is, but I'm sure they exist, now that Google Docs and a few other online versions of MSOffice exist.</p>
http://stackoverflow.com/questions/380835/better-interface-for-file-downloads-and-uploads-from-a-web-page/380957#3809570Answer by Toytown Mafia for Better interface for file downloads and uploads from a web page?Toytown Mafia2008-12-19T13:21:37Z2008-12-19T13:21:37Z<p>I would make sure that there are easy to follow instructions, plus a tutorial somewhere else (perhaps with a video too) to guide users through the process.</p>
http://stackoverflow.com/questions/380835/better-interface-for-file-downloads-and-uploads-from-a-web-page/380994#3809941Answer by bluenote for Better interface for file downloads and uploads from a web page?bluenote2008-12-19T13:39:46Z2008-12-19T13:39:46Z<p>Actually, despite the fact that you have more flexibility with AJAX in developing application, the problem of uploading multiple files is not solved yet. </p>
<p>To the thoughts you've mentioned in your question:</p>
<ol>
<li><p><strong>Google Docs:</strong>
Online apps like Google docs are certainly appealing for certain use cases. However, if you'd like to upload Word and Powerpoint slides, you don't want the content to be changed once you've uploaded the document. The problem is that Google Docs uses its own data format and therefore changes some of the formats. If you go for an online app, I'd go for a Document Management Solution. I'm sure there are plenty (even free ones) out there; however, I didn't use any on them yet.</p></li>
<li><p><strong>WebDAV</strong> It is possible and seems to me like the best solution. You can embed WebDav like any directory. Documents are locked until a user releases the document. Unfortunately, you don't have a web front end to manage the files or administer access restrictions.
It</p></li>
<li><p><strong>Flash or Java app</strong> They do exist, for sure. I'd prefer Flash over Java since Flash Apps still run smoother within a browser. I would definitely not use a rich application, even if it is a Java Web Start app that can be downloaded and opens in a separate window. More and more, users seem to accept browser based web applications. Which brings me to point 4:</p></li>
<li><p><strong>User education</strong> You can educate them, sure. But in the end you want them to <em>want</em> to use the system. Most often, users get easily used to a tool. However, if they don't like the tool, they're not going to use it.</p></li>
</ol>