~~~~NOTE: this concerns only the flash version of this contribution~~

I found some errors in additional_images.php, there are hard coded references to image paths that are not

standard and not included in the install doc.

find:
--------------------
$kaynak="http://www.osicommerce.com/demo1/images/".$product_info['products_image_med'];


change to:
--------------------
$kaynak="images/".$product_info['products_image_med'];


find:
---------------
$kaynak1="http://www.osicommerce.com/demo1/images/".$product_info['products_image_xl_1'];


change to:
-------------
$kaynak1="images/".$product_info['products_image_xl_1'];


Also this function is not standard or defined:
----------

tep_template_image_button()


I changed it to this:
----------------------
tep_image_button()


The above got the images to show up but the zooming function isn't loading or the image simply isn't showing in the large box.

also take out all references to:
/demo1/

Unless your images are under /demo1/images


This will be a great contribution once the file gets properly worked out, I will post back if I get the

time to fix it before someone else does.

Thanks to osicommerce for the work so far on this.



~~~Attatched file is the same text as here.


More...