forked from FineUploader/fine-uploader
-
Notifications
You must be signed in to change notification settings - Fork 2
Server side
archive edited this page Jun 26, 2011
·
1 revision
- For IE6-8, Opera, older versions of other browsers you get the file as you normally do with regular form-base uploads.
- For browsers which upload file with progress bar, you will need to get the raw post data and write it to the file.
You should return json as a text/html, and escape all:
'<' as '<', '>' as '>', and '&' as '&'.
Return:
{"success":true} when upload was successful
{"error":"error message to display"} in case of error
- ColdFusion (see src/file-uploader/server)
- Java (see src/file-uploader/server)
- CGI (see src/file-uploader/server)
- PHP (see src/file-uploader/server)
- ASP.NET MVC