VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: servlet on April 06, 2016, 10:00:32 AM

Title: Get/Load product images form other server (website)
Post by: servlet on April 06, 2016, 10:00:32 AM
Is it possible to load images form other site. There is no reason to download them and then upload them on my server.
What is the way?

regards
Title: Re: Get/Load product images form other server (website)
Post by: servlet on October 21, 2016, 09:34:11 AM
anyone?
Title: Re: Get/Load product images form other server (website)
Post by: GJC Web Design on October 21, 2016, 15:41:20 PM
I guess fill in the url and use that in the template to get the images
Title: Re: Get/Load product images form other server (website)
Post by: jenkinhill on October 21, 2016, 15:51:29 PM
Difficulty is generating the thumbnails. Although you "can" link to and display an image from another site, you do need the physical image to create a thumbnail.
Title: Re: Get/Load product images form other server (website)
Post by: servlet on October 21, 2016, 16:16:47 PM
Thumbnails and originals are from other server... They exist
I want to load them from mother site.
Is it possible to fill urls in database... where are stored links for images by default? I am using CSVI so there is no problem to fill anything but what?
Thank you
Title: Re: Get/Load product images form other server (website)
Post by: Jumbo! on October 21, 2016, 18:35:16 PM
If you want to create direct database entries then you first need to make media entries at #__virtuemart_media. Next you will have to map medias with the products in #__virtuemart_product_medias. Check the table structures to get a clear idea.
Title: Re: Get/Load product images form other server (website)
Post by: kishoreonwork on October 24, 2016, 12:27:11 PM
Hello ,

The simplest way is to do it with htaccess redirect. You need to check the image if it is coming from virtuemart folder than redirect it to your server like this

RewriteRule ^images/stories/virtuemart/product/(.*)$ http://www.masterdomain.com/images/$1 [NC,P]

Thanks
Kishore