vote up 4 vote down star
8

I would like to upload files just like google mail does. I would want to use jQuery and PHP to do it is there anyway of getting the progressbar etc.?

Here I added a video of how google does it. http://dl.getdropbox.com/u/5910/Jing/2009-04-02_1948.swf

No flash, no perl or cgi please..

I guess I can live without the progressbar now I am actually searching for information about jquery plugins or just what things I would need to look at

flag

47% accept rate
1  
Just so you know, Google actually is using Flash in GMail to do that. If you right-click on the 'attach file' link, you'll notice its a transparent SWF. Also, there are ways of uploading files asynchronously using iFrames if you don't want to use Flash at all. Ajax just doesn't support binary data. – KyleFarris Apr 3 at 14:54

4 Answers

vote up 3 vote down

The easiest would be to use SWFUpload, it's a small button written in Flash, with all the hooks to drive it in JS. Very easy to use and works well with PHP

but, if you really want it to be pure JS, you'll need some help from the server. specifically, you'll need to start the upload, and periodically query the server about how's it going. unfortunately, PHP upload handling doesn't get any notification until after the download finishes. you'd have to replace it with something else. there are a few pure JS uploaders that include sample Perl server code just because of that.

IOW: JS and PHP don't (fully) cut it. either add flash to the client, or a better upload handler at the server.

link|flag
Yes. If you can go with Flash. This will save you days of work. – Aaron Qian Apr 2 at 18:06
vote up 2 vote down

Uploadify is another swf (sorry) upload button that uses jquery. Same idea as what Javier mentioned.

link|flag
vote up 1 vote down

PHP doesn't support reporting of upload progress directly. So there is no way of reading the upload status back. However, there is a patch that might work. I haven't tried though.

link|flag
example doesn't even seem to work :( – Thomaschaaf Apr 2 at 18:08
PHP doesn't easily support upload progress. It is possible, but seriously not worth it. – Paolo Bergantino Apr 2 at 18:09
vote up 1 vote down

GMail uses Flash to upload the file in the background. SWFUpload is an open source project that foes something similar.

link|flag

Your Answer

Get an OpenID
or

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