Hi Michel,
It's good to hear that you are exploring BIGFISH. You are right that if you use the full URL reference in the input file, the code will append the 'DEFAULT_IMAGE_DIRECTORY' path to the url. To use the Full URL you can delete the 'DEFAULT_IMAGE_DIRECTORY' path using the 'Image Location Preference' Section under the Product Load Functions and then load the Products. Currently While loading the products, Images are assumed to be already located in the references given in the input file, so that it reduces the time to copy all images from one location to another. We are in the development to handle the 'http' url at both (Product Loader and Product Images from Admin) places. If you need any further help, please feel free to get in touch. Again, Thanks for Keeping eyes on BIGFISH ! Thanks, Praveen Agrawal [email protected] ---------- Forwarded message ---------- From: Michel Schroeder <[email protected]> Date: Mon, Sep 24, 2012 at 7:15 PM Subject: BIGFISH: importing "http:..." image locations To: [email protected] Hello, I am referring to the "BF Admin Module Product Loader" doc, page 4: "URL Locations: any image reference in the input file that begins with "http" will use the full URL reference as the file location. For example: SMALL_IMAGE_URL = http://www.myimages.com/products/some-image.jpg This indicates that the complete reference, without modification or appends, should be used as the file locator." If I understand correctly, the file: /bf/hot-deploy/osafeadmin/src/com/osafe/services/ImportServices.java, around lines 4243 and following seams to benefit from a correction like that: String defaultImageDirectory = (String)imageLocationMap.get("DEFAULT_IMAGE_DIRECTORY"); if(UtilValidate.isNotEmpty(defaultImageDirectory)) { if (contentValue.indexOf("http") != 0) { contentValue = defaultImageDirectory + contentValue; } } Without that correction the default directory path is inserted before the url... Maybe I am missing some points? Anyway, thanks and congratulation for Bigfish! Michel -- View this message in context: http://ofbiz.135035.n4.nabble.com/BIGFISH-importing-http-image-locations-tp4 636448.html Sent from the OFBiz - User mailing list archive at Nabble.com.
