Found another issue. Not sure if this is a biggie. In the admin section under tools->IH2 if you choose preview the images all seem to be broken.
I did some looking around and it would seem the path wasn't getting set correctly for these images.. all had a double /cart/cart in them.
I opened up image_handler.php and hacked the bottom of the page where the images where linked. I changed:
Code:
<td><img style="border: 1px solid #000000; background:url(images/checkpattern.gif)" src="<?php echo HTTP_SERVER . DIR_WS_CATALOG . $images['pngsource']?>" /></td>
<td><img style="border: 1px solid #000000; background:url(images/checkpattern.gif)" src="<?php echo HTTP_SERVER . DIR_WS_CATALOG . $images['pngsmall']?>" /></td>
<td><img style="border: 1px solid #000000; background:url(images/checkpattern.gif)" src="<?php echo HTTP_SERVER . DIR_WS_CATALOG . $images['pngmedium']?>" /></td>
to:
Code:
<td><img style="border: 1px solid #000000; background:url(images/checkpattern.gif)" src="<?php echo HTTP_SERVER .'/'. $images['pngsource']?>" /></td>
<td><img style="border: 1px solid #000000; background:url(images/checkpattern.gif)" src="<?php echo HTTP_SERVER .'/'. $images['pngsmall']?>" /></td>
<td><img style="border: 1px solid #000000; background:url(images/checkpattern.gif)" src="<?php echo HTTP_SERVER . '/' . $images['pngmedium']?>" /></td>
In the sections marked <!-- source png row --> <!-- source jpg row --> and <!-- source gif row -->
Not sure if everyone was having this issue or just me. It would appear I have everything defined correctly.
Anthony Taylor
Webmaster
http://buydentalequipment.com
Bookmarks