Page 5 of 5

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Thu Dec 01, 2011 7:37 pm
by RemarkLima
Just wanted to add that is is an excellent addin! With the VQ mod it's very slick!

I was also getting the "Attachments exceed maximum size limit" error, as I think some of the images were too hi res, so by changing line 154 and 312 in the XML file, from:

max_post_size: (1536 * 1024),

to

max_post_size: (3072 * 2048),

Allows for higer res images to be to be uploaded... However I'd not go crazy with this figure otherwise the uploads will be huge, take an age to upload, eat your bandwidth and probably cause the server to have to work pretty hard resizing all the images!

Thanks again :D

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Wed Dec 14, 2011 9:50 pm
by avantus
I press "upload image" and nothing happens. why?

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Thu Dec 15, 2011 2:51 pm
by avantus
The first image is added to the list of images with an incorrect address: /image/cache/data/%20%20%20%20product/5452sdfaf-100x100.jpg

Others added to normal. Why?

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Tue Jan 24, 2012 7:36 pm
by ultrasplet
I press "upload image" and nothing happens. why?
Same problem for me too :-\

I am using Version 1.5.1.3 on IIS.
I copied all files and manualy update files step by step from vqmod (I do not want to use vqmod). I am prety sure I did all steps from vqmod.

As I see, files are uplodad to folder "images/products", but not to the list of images.

any help?

EDIT:
Sorry, I accidentally deleted one faction in the end of product_form.tpl - Now is working - Thanky you!

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Thu Feb 02, 2012 5:31 pm
by ultrasplet
Because original code overwrite exsisting image with same name, I just look in to code and add some random number to reduce overwriting same files to minimum.

Open file: admin/controller/common/agile_uploader.php
AFTER:
$name = $_FILES["Filedata"]["name"]; around line 12

ADD:
$random_digit=rand(0000,9999);
$name = $random_digit.$name;

AFTER:
$name = $_FILES["Filedata"]["name"][$key]; around line 43 (before we add new line, was around 41)

ADD:
$random_digit=rand(0000,9999);
$name = $random_digit.$name;

DONE!

You can also add time stamp or anythink else...
Hope this help to anyone.

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Mon Feb 27, 2012 10:58 am
by seatrend
Thanks to gsk for the MOD.
Thanks to jcmarchi for vqmod modification.
And thank you to ultrasplet for image overwrite solution.

You are awesome guys !!! :ok:

Works great in 1.5.1.3

This mod has no equal even among paid solutions and must be a part from default system.

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Mon Mar 19, 2012 11:40 pm
by micdansan
Yes, current OC image manager still sucks!,, This kind of system must be part on the default OC system.. By the way,have anyone tried this MOD on v1.5.2.1. Does it work on the latest version?

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Sat Mar 24, 2012 1:08 am
by cwswebdesign
micdansan wrote:Yes, current OC image manager still sucks!,, This kind of system must be part on the default OC system.. By the way,have anyone tried this MOD on v1.5.2.1. Does it work on the latest version?
The v1.5.1.3 mod does NOT work on 1.5.2.1

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Fri Mar 30, 2012 1:43 am
by cwswebdesign
I just found heaven! I personally think this is even better than rapid image upload because you can keep your images organized easily in folders if you have a lot of products. With the Rapid uploader (which was a lifesaver when I built my first site) only sends the images to one folder.

Read the documentation to see what all is offered in the package in addition to multiple uploads.

http://www.opencart.com/index.php?route ... order=DESC

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Sat Mar 31, 2012 10:29 pm
by kaylohn
++++++++++++++
ANNOUNCEMENT
++++++++++++++

INTRODUCING:

Batch+ for ImageManager+

Get ready for some change!

Learn more: http://youtu.be/dDprFR8fsoo

Happy OpenCarting!

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Wed Apr 04, 2012 4:56 am
by cwswebdesign
Kaylohn,

Is there any chance that the "Oomph" edition is coming for v1.5.2.1?

Thanks!
kaylohn wrote:++++++++++++++
ANNOUNCEMENT
++++++++++++++

INTRODUCING:

Batch+ for ImageManager+

Get ready for some change!

Learn more: http://youtu.be/dDprFR8fsoo

Happy OpenCarting!

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Thu Apr 05, 2012 8:49 pm
by kaylohn
+++++++++++++++
ANNOUNCEMENT
+++++++++++++++

The wait and mystery is over!

ImageManager+ Woah! Edition RELEASED for OC v1.5.2.x
http://www.opencart.com/index.php?route ... on_id=3601

NEW FEATURES

- On folder delete the folder previous to the deleted one is selected, no more jumping to top.
- Displays number of files found in folder on folder select.
- Long filenames are truncated to 20 characters (so it doesn't mess up the List/Text views, shows a small red << where truncated. Actual filenames are untouched and can be viewed by hovering over the image.
- All features from IM+ Oomph for OCv1.5.1.x are tested and working.

Download updated. Please check out the documentation for updates and information.

Please do not forget to vote and comment.

As for people who were interested in paying for IM+, they can donate instead. :)

Happy OpenCarting!

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Fri Apr 27, 2012 7:38 pm
by orangebox321
just installed this wow now its a real shame this isnt in the core big improvement over standard uploader! many thanks

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Mon May 21, 2012 3:39 am
by kaylohn
orangebox321 wrote:just installed this wow now its a real shame this isnt in the core big improvement over standard uploader! many thanks
Thanks. :)

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Wed Jul 04, 2012 7:50 am
by menkom
Fantastic mod, this should be default, the only other thing i could recommend as your next feature is MULTI delete of items, i find it a pain to have to do it one at a time.

Cheers.

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Fri Sep 07, 2012 7:34 am
by Chuma
it is not work with 1.5.3.1.
Work fine until upload. Do not upload anything. Can anybody help with updating this great mod to 1.5.3.1?

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Wed Feb 27, 2013 5:55 pm
by andrewsuu
I'm kind of looking for an alternative for quickeditmod as well since I got no answere

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Sat Mar 02, 2013 8:47 pm
by kaylohn
+++++++++++++++
ANNOUNCEMENT
+++++++++++++++

Batch+ integrated with ImageManager+ for OpenCart v1.5.5.x

The video better explain what Batch+ does:

https://www.youtube.com/watch?v=JvXeky2paeo

Briefly, Batch+ has two basic functions:

1. BatchUpload :: Upload images directly to folders and select/ add them automatically as additional product images. New folders for image upload can also be created from within Batch+ without loading up Image Manager.

2. BatchSelect :: Select multiple images from your already uploaded images (from different folders too) and select them as additional product images.

NO default feature of OpenCart is removed. Additional product images can be added via OpenCart's default 'Add Image' button and can then be browsed with ImageManager+ as well.

Happy OpenCarting!

Re: [MOD]Rapid Image Uploader (image manager alternative)

Posted: Thu Jul 04, 2013 10:49 pm
by paketonlinestore
micdansan wrote:gsk., another issue i notice using this MOD.

Add image button loads very slow and sometimes it doesn't show at all. I need to refresh the page or click BACK on the browser. Details see image:
issue.jpg
is there a way to replace this button. Why not replace it with a standard button or like the UPLOAD TO SERVER button

Anyone help?
I have the same problem, i noticed that the button was flash and even though it worked like charms in PC but it didn't work in mobiles (Blackberry browser, Android Browser). How to make the flash image selection button work in Mobile browsers?