batch image uploads with no ftp

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
konstandinos
Forum Commoner
Posts: 68
Joined: Wed Oct 04, 2006 4:20 am

batch image uploads with no ftp

Post by konstandinos »

hi guys

i have a client who wishes to upload 10 - 25 images at a time for an online cms i have written. one image at a time is too slow.

ftp access is not an option.

what are my options?
User avatar
Mordred
DevNet Resident
Posts: 1579
Joined: Sun Sep 03, 2006 5:19 am
Location: Sofia, Bulgaria

Post by Mordred »

1. A form with several file upload fields
2. Java applet ftp client, I haven't seen one, but there should be :)
3. Custom desktop application that uploads to the PHP backend.
konstandinos
Forum Commoner
Posts: 68
Joined: Wed Oct 04, 2006 4:20 am

Post by konstandinos »

ok well options 2 and 3 are pretty much out of the question in this case.

option 1 i've been toying with: the form will have to be generated dynamically, based on the client specifying the amount of images he intends to upload, then he has to go and populate each file input field, remembering which image to select for each one (well i guess he can see what he last selected by looking at previous input fields above), and then finally doing a mass upload by submitting the form.

this seems a bit tedious though. its almost like going to the shop and having to select and pay for an item, and then returning back inside to get the next item on the shopping list. pardon the metaphor, but you get the idea.

surely there is a "select multiple files/images at once and click upload" type option? anyone?

(no, this cms has nothing to do with shopping carts and eCommerce)
konstandinos
Forum Commoner
Posts: 68
Joined: Wed Oct 04, 2006 4:20 am

Post by konstandinos »

hey modred (and others)

a friend pointed this out to me: http://uber-uploader.sourceforge.net/

you might find it useful. its along the lines of option1.

cheers
Post Reply