iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Graphics & Design Discussion Forum Post your graphics design questions/comments/ideas in here. Ask questions, post tutorials, discuss trends and best practices. Sub-forum for website accessibility and usability.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-17-2008, 12:00 PM
tombstoneweb's Avatar
WebProWorld Member
 
Join Date: Sep 2004
Location: Tombstone Arizona
Posts: 87
tombstoneweb RepRank 1
Default Customer wants a photo page that they can upload to

Hi all,

I have a question. One of my clients wants to have a page on their website that they can upload and change the pictures when they want.

I know there are a few different ways to accomplish this.

I am interested to know how you would go about doing this? Would you just use a facebook type photo site and link to it? What other options are there?

Thanks in advance!
__________________
Invent the possibilities, not the obstacles.
Tombstone Arizona - Tombstone Arizona History - Tombstone Arizona Souvenirs
Reply With Quote
  #2 (permalink)  
Old 10-17-2008, 01:04 PM
Dubbya's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Nov 2006
Location: Steinbach, Manitoba, Canada
Posts: 1,298
Dubbya RepRank 4Dubbya RepRank 4Dubbya RepRank 4Dubbya RepRank 4Dubbya RepRank 4
Default Re: Customer wants a photo page that they can upload to

Depends if you have the site hosted on a server that'll let you run scripting languages.

Sounds like the same sort of functionality you'd see at any number of buy/sell or auto sales sites these days.

Years back, I was part of a team that built a site for a business in California that sells tow trucks, decks and equipment.

They wanted the ability to take digital photos of new and used equipment, manage photos and web pages and detailed instructions that explained exactly what they needed to do right from square one. The persons responsible for doing this were barely able to start up a PC and had no knowledge of HTML or how to work a digital camera.

We used a file VBScript-based file upload component (COM Object) and a bunch of custom scripting to upload and scale the images, create thumbnails, name and save them to dynamically created folders. In the back end, we employed an Access database to store page data and file locations.

Once they'd uploaded the images, they were able to build, modify or delete pages and also to select, rename or delete the photos (and matching thumbnails).

You should find it relatively simple to find a file upload component that'll allow you to dynamically upload and size the images but it might take some work to find a solution to creating custom content.

I think that most of the CMS (Content Management Systems) sites should provide some level of inspiration and/or support for what you need to do. Maybe start there...

Also, do some searches for File Upload components supported by your computer language of choice.

.02
Reply With Quote
  #3 (permalink)  
Old 10-17-2008, 06:30 PM
Corobori's Avatar
WebProWorld Member
 
Join Date: Jan 2004
Location: Concepcion, Chile
Posts: 47
Corobori RepRank 0
Default Re: Customer wants a photo page that they can upload to

Done it so many times....

As Dubbya says it all depends on the server.
I am using IIS running .NET so it's pretty straight forward, much easier than a few years ago (no COM object required any more ).

It also depends on how much process you want to do on the back end.

To start you need to make sure your user won't upload a huge pic. Our days people are taking pics at a zillions mega pixels and you can have a 10Mb pic with a size 5000x3000 pixels. Pretty useless for the web. Of course you can resize the pic using the HTML width tag but this isn't going to change the weight.
What I am using is either .NET drawing features or 3rd party component which will resize the pic and reduce it's weight. I have done this for real estate agencies where I am uploading 10 pics per property, creating 3 different sizes of pics to be used in different parts of the website and also in some opportunities I am even branding the pic with some sort of copyright stuff. Also did it for 2nd hand car dealers, product's catalog, news publishing web site, etc...
__________________
jean-luc
www.corobori.com
Reply With Quote
  #4 (permalink)  
Old 10-18-2008, 10:51 AM
WebProWorld Pro
 
Join Date: Aug 2007
Location: Stuttgart Germany
Posts: 173
kruser RepRank 1
Default Re: Customer wants a photo page that they can upload to

I was able to successfully accomplish picture uploading including re-sizing and customer administration on a Linux server using PHP and MYSQL earlier this year ( 2008 ) . Took some effort to grasp the concept, but eventually the script ended up quite short and clean and is still working reliably.
__________________
Best Regards,
Randy

Last edited by kruser; 10-18-2008 at 10:54 AM. Reason: Happy face showing up when I enter (2008)
Reply With Quote
  #5 (permalink)  
Old 10-18-2008, 02:28 PM
WebProWorld Member
 
Join Date: Aug 2007
Location: Costa Rica
Posts: 53
webmax RepRank 1
Default Re: Customer wants a photo page that they can upload to

Yes, it depends on the server. Some hosting providers even include the software to upload changes made to a .csv file so that you can change the content of an existing database without any programming knowledge. We have not used this yet.
What we have done a few times for clients with little computer knowledge is this. First, we make a sql database on the remote server and hook it up with the appropriate spaces on the website. Then we create a .csv based on that, which we give the client so they can use to make changes. They can use notepad to work on the file. We also give them a password protected screen where they go and upload this .csv. Then, on the same screen, they also upload the pictures. We do this programming in PHP. Some limitations of our system: the name of the photo has to match the first entry they put in for that product in the .csv; they shouldn't upload anything wider than a certain number of pixels; they cannot add more features than the predefined number of features defined in the .csv, although they can add more products. It is a quick, easy, and very robust solution. People of varying computer abilities can learn to use it in a few minutes.
But if you don't want to do your own programming, you can try Coppermine, which is a PHP photo gallery. I've used it for some clients where you don't need to do a lot of customization.
Reply With Quote
  #6 (permalink)  
Old 10-18-2008, 03:22 PM
holmpage's Avatar
WebProWorld Member
 
Join Date: Apr 2004
Location: Nova Scotia
Posts: 30
holmpage RepRank 1
Default Re: Customer wants a photo page that they can upload to

Some other quick options that don't require any programming knowledge:
  • Smugmug.com is the Cadillac of photo sharing sites. The client can set up as many galleries as they want. If you buy the pro account, you can customize it completely and have it on your own domain. I'm starting to recommend it to artists who can't afford to pay me.
  • WordPress is getting better and better, and will resize images and allow you to choose the size you want. You could build a whole website based on WordPress, leaving the blog function out and building pages only, and most people would never know.
  • If it's a community based site, with a number of people involved, you could create a Flickr group and have people contribute photos to the group pool. Some of them may already have Flickr accounts. I'm trying this with a group that is trying to encourage participation and photo sharing among mostly older people - I figure it's the best chance I have of getting them to do it themselves.
__________________
Heather Holm
Web Design: www.holmpage.com
Nova Scotia: www.NovaScotiaPhotoAlbum.com
Reply With Quote
  #7 (permalink)  
Old 10-19-2008, 07:20 PM
tombstoneweb's Avatar
WebProWorld Member
 
Join Date: Sep 2004
Location: Tombstone Arizona
Posts: 87
tombstoneweb RepRank 1
Default Re: Customer wants a photo page that they can upload to

Thank you all for your responses. These are all great suggestions. I now have some decision making to do. Thanks again!
__________________
Invent the possibilities, not the obstacles.
Tombstone Arizona - Tombstone Arizona History - Tombstone Arizona Souvenirs
Reply With Quote
  #8 (permalink)  
Old 10-20-2008, 11:13 AM
WebProWorld New Member
 
Join Date: Apr 2008
Location: Arkansas
Posts: 23
BSmithTTS RepRank 0
Default Re: Customer wants a photo page that they can upload to

My recommendation: Gallery | Your photos on your website (Gallery 2 from menalto)
• It can be as simple or as complex as you want/need.
• It bridges well with many CMS applications.
• Can be skinned to match most any website.
__________________
- Brian :: Website Design
Reply With Quote
  #9 (permalink)  
Old 10-24-2008, 01:16 AM
WebProWorld Pro
 
Join Date: Nov 2004
Location: Westmoreland County, PA
Posts: 217
noel_x99 RepRank 0
Default Re: Customer wants a photo page that they can upload to

I'll second holmpage's comment on Smugmug.

If you do CSS you can customize the mid level or the pro package so that it seamlessly blends with the original site. We've used it for a handful of our customers. They love it because it's so easy to use.

Their support forums are awesome. Any time I ask a question, I get an answer within hours.
__________________
Jane Noel
http://www.InWestmoreland.com
Westmoreland County PA's Business Directory
Reply With Quote
  #10 (permalink)  
Old 11-10-2008, 08:02 AM
crowdadmin's Avatar
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 8
crowdadmin RepRank 0
Default Re: Customer wants a photo page that they can upload to

Quote:
Originally Posted by BSmithTTS View Post
My recommendation: Gallery | Your photos on your website (Gallery 2 from menalto)
• It can be as simple or as complex as you want/need.
• It bridges well with many CMS applications.
• Can be skinned to match most any website.
Agree, the definately most powerfull gallery out there and it is GPL.
Trought it is smarty and very modular inside. If you like a powerfull something you would configure buy turnng on, off and ajusting the options it is nice. But any other change like adding own options, changing the gome page into something else, adding a contact form or even deleting its native ones becomes a tricky task as there are hell of files and deppendancies under the hood.

It mihght be a challange to teach theclient how to manage it (well... even for you it sometimes might be a challange to remember "where was that contorlled by")

Last edited by crowdadmin; 11-10-2008 at 08:05 AM.
Reply With Quote
Reply

  WebProWorld > Site Design > Graphics & Design Discussion Forum

Thread Tools
Display Modes

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
Photo Upload scripts / software swagtails Content Discussion Forum 1 04-01-2007 07:51 PM
How do I upload my photo? Janet444 Member Photos 1 10-05-2005 04:00 PM
Me too, me too, please upload my photo. followme Member Photos 2 04-11-2005 03:30 PM
My Event - Invitation and photo upload site delstar Submit Your Site For Review 3 10-03-2004 06:40 PM
How do you upload a page using Dreamweaver? TheDoctor Graphics & Design Discussion Forum 8 01-15-2004 06:06 AM


All times are GMT -4. The time now is 02:49 PM.



Search Engine Optimization by vBSEO 3.3.0