I need to add a user upload feature to a photostore website...

This is a discussion on "I need to add a user upload feature to a photostore website..." within the PHP Forum section. This forum, and the thread "I need to add a user upload feature to a photostore website... are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 24th, 2006, 18:03
New Member
Join Date: Sep 2006
Location: SF Bay Area
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
I need to add a user upload feature to a photostore website...

I am still a newbie in the world of web design. I am trying to help a small independent photostore owner add the ability to allow customers to upload images for printing. I am not sure what would be the best method and where I should start looking for information on it.

Here is the exactly what we would like to do...

Create a virutal drop box. Customers would goto the website fill in boxes for their name, address, phone number, the size of prints they want, number of prints they want, and then a place for them to upload the images. We are trying to keep it as simple as possible for the customer, so we are not worried about passwords or login ID. It would be nice if it could select a folder on the customers computer and upload it or allow the custom to pick just certain images to upload.

Any direction or ideas people could give would be greatly appreciated.
Reply With Quote

  #2 (permalink)  
Old Sep 24th, 2006, 21:10
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: I need to add a user upload feature to a photostore website...

What you want to do is both simple and more complex if you want it to operate cross-browser.

You just need to create a form and include this as one of the <form.. tags attributes:
Code: Select all
enctype='multipart/form-data'
This allow the forms to handle file attachments as well as data fields.

Now the reason it gets more complex, for the use you want, is that an input field of type file can only upload one file at a time. As you can't second guess how many files the user is going to want to upload, you would have to get them to select a quanity first and then use JavaScript to provide the necessary number of file input fields.

You are also going to need to cope with this in your script when the files are uploaded. There will also be a limit set in your php.ini file on the server, assuming you are using php, as to the max amount of upload available. You can manipulate this but you need to know what you are doing.

Do you have the ability to cope with this and more?
Reply With Quote
  #3 (permalink)  
Old Sep 25th, 2006, 17:18
New Member
Join Date: Sep 2006
Location: SF Bay Area
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: I need to add a user upload feature to a photostore website...

Thanks for the information ukgeoff.

I am going to check my hosting account at GoDaddy and make sure I know exactly what I am working with.

Sounds like uploading a bunch of files maybe a challenge. I will have to ask the store owner how often he gets orders of 10 or more prints from digital print requests. I know for myself, the usual would be few digital images to get printed. The idea of digital is not to print the bad shots, so I am hoping he has not had customers dumping every digital image they take on him.

Outside if the server info, I can tell you the website is very basic and can be totally revamped if it would help make this feature work.
Reply With Quote
Reply

Tags
add, user, upload, feature, photostore, website

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Website with login feature robinmitra1 PHP Forum 5 Apr 25th, 2008 13:54
mp3 user ftp file upload nate2099 PHP Forum 3 Aug 30th, 2007 23:30
PDF upload feature for Flash Nuwud Flash & Multimedia Forum 4 Aug 28th, 2007 16:22
User Upload service Xhristy PHP Forum 1 Jun 10th, 2007 18:56
Upload feature scopeweb Web Page Design 1 Nov 24th, 2005 22:07


All times are GMT. The time now is 21:07.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43