68 Classifieds Forums

Multiple image upload

This is a discussion on Multiple image upload within the v3.1 Suggestions and Feedback forums, part of the v3.1 Legacy Help & Support category; I think the whole problem with dial-up users could simply be solved by adding a small piece of text below ...


Go Back   68 Classifieds Forums > v3.1 Legacy Help & Support > v3.1 Suggestions and Feedback

Reply
 
LinkBack Thread Tools Display Modes
  #11  
Old 08-17-2007, 07:34 PM
Member
 
Join Date: Apr 2006
Posts: 44
Rep Power: 12
bearcat is on a distinguished road
Default

I think the whole problem with dial-up users could simply be solved by adding a small piece of text below the image upload boxes that goes something like:

"Dial-up users: If you find your connection timing out, upload only one image at a time."

On another note, if even Photopost Classifieds has this, that really should say something. That program is well below 68classifieds in overall features, but at the same time their parent company sells a very popular image gallery software, and would have a lot of experience and user feedback in precisely this area.

IMHO, the people who would appreciate this feature the most are the big dealers and brokers (cars, real estate, motorcycles, boats, and so forth) who spend a lot of time simply putting up their ads. Doing the pictures the way they are now for, say, 50 listings is sheer tedium.
Reply With Quote
  #12  
Old 08-17-2007, 07:48 PM
Member
 
Join Date: Apr 2006
Posts: 44
Rep Power: 12
bearcat is on a distinguished road
Default

Quote:
Originally Posted by civ View Post
I'll put my two cents in here as well - I think it's a great idea. We've actually had requests from customers for this very thing, and on other sites we own we saw a huge jump in user satisfaction after making multiple image uploads available.

It would be great to see this in v4.
Civ, if you were to make a module for this, I'd buy it in a hearbeat.
In fact, I'd buy it even if Eric announced we were going to get multiple image uploads in version 4.1. I consider this the biggest interface weak point in 68classifieds from the standpoint of users, and I would like to have this feature as soon as I switch to version 4.

I know he has a lot on his plate, and I respect that, but I would like to hear from Eric if this is something he plans to do in the near future. I'm not a programmer, and I don't know how difficult it would be to write a module for this, but I also don't think it would be too hard to put this into the program from his end.
Reply With Quote
  #13  
Old 08-17-2007, 09:52 PM
CHRD's Avatar
Senior Member
 
Join Date: Nov 2006
Posts: 169
Rep Power: 12
CHRD is on a distinguished road
Default

Quote:
Originally Posted by Chaslie View Post
Exactly Larry. Sites that provide this option are biiiiiiiiiiiiiiiiiiiiiiiiiiig dedicated servers with biiiiiiiiiiiiiiiiiiiiiig bandwidth capacity.
I use a $25 classified script for cheap as chips property agents sites that lets them load upto 10 images at a time, and I host them hostgator.

Also I dont like how the user can see a thumbnail image of the images they have just loaded on a new listing, they just get 1 0f 10 images
__________________
Costa del Sol
Spain
v3.1.10 Dev
V4.09 Dev sweeeet
“Powerful you have become, the dark side I sense in you.”
Reply With Quote
  #14  
Old 10-07-2007, 08:45 PM
Member
 
Join Date: Oct 2007
Posts: 36
Rep Power: 6
whoazone is on a distinguished road
Thumbs up count me in too

if anyone finds a way to incorporate a multiple boxes uploading system, PLEASE count me in. I will be a same-day customer!! My classified site is based on multiple images (up to 16 per listing) and the multiple boxes are a MUST.

If needed, you could always limit the cluster amount to 4 at a time or 6 at a time. As a user, it is terrible to sit and load 8 or 10 images then have a glitch and lose them and have to start over. And what if I'm adding 6 or 8 listings at once? I'll be here a few hours!

I read somewhere upwards of 80% of people nowdays have some sort of high speed, and certainly most folks who think of selling things on line are sophisticated enough to make it work. If not, we're still stepping up and serving a huge clientele better and fast, which is our objective, right?

You 68C guys are SO heads and shoulders above the competition in 99% of all functionality and ease of use -- its a shame your image related stuff isn't just a wee better - like this download feature we're talking about, as well as offering thumbnail views when uploading, and cooler ways of showing large numbers of images on the actual ads themselves.
Reply With Quote
  #15  
Old 10-09-2007, 10:39 AM
Mike-N-Tosh's Avatar
Moderator
 
Join Date: Jan 2007
Posts: 986
Rep Power: 30
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

I too would love to see something like this incorporated into 68c.

lhotch has very legitimate points regarding both the server side (shared hosting) and end user (dial-up) customers, however in this day and age most hosting servers allow enough bandwidth to allow this and having some type of messaging for dial-up users should be enough IMHO.

What I would actually like to see and would suggest is two-fold.

Have the option (in admin) as to whether or not you want to allow multiple image uploads.

Have thumbnail previews of the images.

-Mike
__________________
Mike-N-Tosh
v3.1.10 Developer IndianaPC.org - A community website
Sandbox v4.0, 4.0.1, 4.0.4, 4.0.8, 4.1b3

Templates for sale | 68 Classifieds Customizations | My blog on 68
Web Hosting | Web Design & Development
I am not a 68C employee, just a user and try to help out
Reply With Quote
  #16  
Old 10-14-2007, 01:33 PM
Member
 
Join Date: Oct 2007
Posts: 36
Rep Power: 6
whoazone is on a distinguished road
Thumbs up second best solution

well, until the multiple upload window is established (which I desperately hope it will be!!) the next best thing I have found is the thumbnail viewer for the image upload. The thread I found was from a while back, but to simplify the search and keep others from having to hunt and peck for solutions (like I did) I have attached complete instructions for it below. (per Mully's development - thanks Mully!!!)

NOTES: in the instructions where it says "put the image display wherever you wan it" I chose to put it in the table above my browse/load window, just FYI :-) Also, in the original modification it allowed for however many loaded images to appear in order continuing to the right, but after 6 or 8, they just expanded off the page. Per a suggestion from one of the 68C guys, I included the midification to limit so many images per row then bounce to a new line. Works perfect. Hope it helps someone....(read carefully - there are several steps!) Thanks guys for making this known...

***to adjust how many images fill a row before new line change $images to the number you want: i.e.:

cols=$numimages to cols=4 -- this starts a new line after 4 images.

THUMBNAIL PREVIEW IMAGE LOADER MODIFICATION:

In usercheckout.php add the following code for case 5 between just before the line //get the total number of images


PHP Code:

$prodID=$rs['oPackageID'];

//get the images info
$sSQL = sprintf("SELECT id,pid,title,image FROM ".PREFIX."prodimages WHERE pid = %s ORDER BY rank ASC",$listingid );
$result=$db->query($sSQL);
$image=array();
while ($rs=$result->fetch())
{
$rs['title']=safeStripSlashes($rs['title']);
$size = @getimagesize('../photos/'.$rs['image']);
$rs['width']=$size[0];
$rs['height'] = $size[1];
$image[]=$rs;
}

//get the total number of images


This catches the image info.

Add the following before the line $class_tpl->assign('body','checkout/step4.tpl.php'); in the same section


PHP Code:$class_tpl->assign('data', $image);
$class_tpl->assign('body','checkout/step4.tpl.php');


This assigns the additional info to the 'checkout/step4.tpl.php' template.

You now need to modify you template to show the images, the file is 'checkout/step4.tpl.php'.
How you choose to display them is up to you now you have all the info in the template, I display them horizontally at the top and use lightbulb so in a cell my code looks like:


PHP Code:

<th colspan="2" valign="top" class="pformleft">
{if $data<>""}
{html_table_adv loop=$data cols=$numimages table_attr='width="100%"' td_attr='align="center"' td_attr='valign="bottom"'}
<a href="photos/[[image]]" rel="lightbox[image]" title="[[title]]"><img src="thumbs/small_[[image]]" hspace="5" vspace="5" class="image" border="0" /></a><br />[[title]]
{/html_table_adv}
{/if}
</th>



You would have to remove the lighbulb references for your own if not being used. I also use the TH label instead of the TD as on my site it underlines for me.


You'll only ever see your max number of picture -1 in this screen as your automatically forwarded on when you hit your limit.
Reply With Quote
  #17  
Old 08-06-2008, 10:31 AM
Member
 
Join Date: Apr 2006
Posts: 44
Rep Power: 12
bearcat is on a distinguished road
Default

Is this ever going to be implemented, or will someone write a module for it? To me, it is a pretty essential feature, and that seems to be true for some other users here based on the feedback.
Reply With Quote
  #18  
Old 08-06-2008, 01:56 PM
Maffo's Avatar
The Master
 
Join Date: Mar 2006
Location: British in Argentina
Posts: 1,399
Rep Power: 41
Maffo is a jewel in the rough
Default

This already exists

Try the maffo dynamic checkout system
__________________
Super Mod v4 Is out and ready for download. DEMO
Purchase V4 Super Mod BETA at Reduced Price

Visit Me @ Classified-Sofware.co.uk

**Important** - All modules with the exceptions of the Bulk Upload System will be removed from my modshop on Tuesday September 30th. If you require a module you must get it before that date.
Reply With Quote
  #19  
Old 08-10-2008, 02:42 AM
Member
 
Join Date: Apr 2006
Posts: 44
Rep Power: 12
bearcat is on a distinguished road
Default

Quote:
Originally Posted by Maffo View Post
This already exists

Try the maffo dynamic checkout system
Awesome
Reply With Quote
  #20  
Old 08-13-2008, 09:35 PM
Member
 
Join Date: Jul 2008
Posts: 37
Rep Power: 2
suav is on a distinguished road
Default

Has anyone used Maffo Dynamic Checkout System for V4? If so, mind providing feedback?
__________________
Running v4.0.8 Dev with the default template.
Reply With Quote
Reply

Bookmarks

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
Image upload PROBLEM! midoplaz v3.1 Questions & Support 6 07-30-2007 10:49 AM
Problem of importation (upload) of image on HTML editor jabs v3.1 Questions & Support 3 04-05-2007 08:43 AM
Image upload problems... Mikael v3.1 Questions & Support 13 02-22-2007 09:46 AM
Multiple Image Upload CB v3.1 Questions & Support 0 09-19-2006 02:47 PM


All times are GMT -4. The time now is 01:29 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22