Re: New Image Manager available
Hello
good posting but i cant see de images. wend you click on "clik for image" the link is http://mysite.com/images/acessories/image.jpg but its rong the correct link is http://mysite.com/SHOP/images/acessories/image.jpg
Re: New Image Manager available
Hi Dinix,
Can you try the following:
In admin/includes/functions/extra_functions, edit function_image_manager.php
On line 187, replace:
$file = HTTP_CATALOG_SERVER . "/" . DIR_WS_IMAGES . $p["dirname"] . $p["filename"] . "." . $p["extension"];
with:
$file = DIR_WS_CATALOG_IMAGES . $p["dirname"] . $p["filename"] . "." . $p["extension"];
On line 233, replace:
$file = HTTP_CATALOG_SERVER . "/" . DIR_WS_IMAGES . 'medium/'. $p["dirname"] . $p["filename"] . "_MED." . $p["extension"];
with:
$file = DIR_WS_CATALOG_IMAGES . 'medium/'. $p["dirname"] . $p["filename"] . "_MED." . $p["extension"];
On line 287, replace:
$file = HTTP_CATALOG_SERVER . "/" . DIR_WS_IMAGES . 'large/'. $p["dirname"] . $p["filename"] . "_LRG." . $p["extension"];
with:
$file = DIR_WS_CATALOG_IMAGES . 'large/'. $p["dirname"] . $p["filename"] . "_LRG." . $p["extension"];
I THINK this will fix your problem, but as I cannot test this myself I'm not entirely sure. If it doesn't help, please report back and we will go a step further.
Boudewijn
Re: New Image Manager available
Tanks Boudewijn
now works fine
Re: New Image Manager available
Sounds like a good add on, I will give it a try once I'm done updating the stores!
Re: New Image Manager available
Hmmm nice shop :-)
Installation is done in 5 mins.....
If you intend to update your images too, this tool will be very helpful!
Re: New Image Manager available
Looks like this doesnt work with 1.3.9.
When installed on a 1.3.9 you dont see thumbnails of images.
Also you can not perform any actions on images. You cant create sized images ( the main feature I liked).
It does let you search your images and see if the correct images size files are present. It does make non existent folders automatically.
And you can delete images that are not linked.
I did try boudewijn's fix above with no effect.
Re: New Image Manager available
Hi,
Actually I just started rebuilding our webshop to ZenCart 1.3.9. I also copied the IM package but had no opportunity yet to test it, as there are no products and images in my DB.
I will give this some priority and come up with an answer soon.
Boudewijn
Re: New Image Manager available
I did find a small bug in the English language file:
in
<admin dir>/includes/languages/english/extra_definitions/image_manager.php line 30 should be:
define('IM_SELECT_IMG_IMG_ALL', 'All images');
Furthermore I did a small test with one product and one image, and all works fine. So I suspect the problem is in your config.
Can you check <admin dir>/includes/configure.php and check the values for:
HTTP_CATALOG_SERVER: should be something like http://www.mysite.com (no trailing slash)
DIR_WS_IMAGES: should be images/
and check if the image is actually in http://www.mysite.com/images/mypic.jpg
The uploaded image should appear, even before the medium and large image is made, if you select "Small images' or 'All images' in the option bar and click 'Send'.
Boudewijn
Re: New Image Manager available
Just checked configure.php admin/includes file and it is all correct.
All product images are in the correct image folder.
I tried selecting all different options and could not get any thumbnail images to appear. Nor were there any options anywhere to create med. or large images.
I will try your small change, but don't think that is big enough a change to make it work on my site. I did notice that another image manager addon named Imaged Handler required another program GD libraries or ImageMagick to work. However I see no mention of this anywhere about your addon. Is it required for yours as well and just doesnt mention it? ty for the help.