How do I add Product Images as URL instead of uploading them in Magento?Can Magento 1.9 be configured to load product images directly from an external URL:Product Images Not UploadingUse CDN url instead of image path with mysql bulk importUploading product image not showing on front endIs there any Module to create text on product (tshirt), upload images on productMagento2 - Import Product with Images Using Absolute Pathsave both image and text as single image in serverupload custom product image programaticallyTrying to get CloudFront to work with Magento 2Magento is duplicating imagesUnable to add images in Magento 1.9. Is it possible to create a new product, upload the photo to a folder & reference photo directly in the database?

Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?

How to limit Drive Letters Windows assigns to new removable USB drives

Does tea made with boiling water cool faster than tea made with boiled (but still hot) water?

As an international instructor, should I openly talk about my accent?

How to pronounce 'c++' in Spanish

Why do games have consumables?

Two field separators (colon and space) in awk

Could the terminal length of components like resistors be reduced?

How could Tony Stark make this in Endgame?

What happens to Mjolnir (Thor's hammer) at the end of Endgame?

Why did C use the -> operator instead of reusing the . operator?

infinitely many negative and infinitely many positive numbers

Multiple options vs single option UI

Mistake in years of experience in resume?

"The cow" OR "a cow" OR "cows" in this context

How to not starve gigantic beasts

Which big number is bigger?

Can I criticise the more senior developers around me for not writing clean code?

Apply MapThread to all but one variable

Is there really no use for MD5 anymore?

Is it idiomatic to construct against `this`

Don’t seats that recline flat defeat the purpose of having seatbelts?

Checks user level and limit the data before saving it to mongoDB

Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?



How do I add Product Images as URL instead of uploading them in Magento?


Can Magento 1.9 be configured to load product images directly from an external URL:Product Images Not UploadingUse CDN url instead of image path with mysql bulk importUploading product image not showing on front endIs there any Module to create text on product (tshirt), upload images on productMagento2 - Import Product with Images Using Absolute Pathsave both image and text as single image in serverupload custom product image programaticallyTrying to get CloudFront to work with Magento 2Magento is duplicating imagesUnable to add images in Magento 1.9. Is it possible to create a new product, upload the photo to a folder & reference photo directly in the database?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








6















I am making a fashion store in Magento. I have affiliation with many stores and I don't want to save their product images on my server because of space issue, they require a lots of space more than 30 GB.



I want to add an absolute path for images so I can save space on my server.



Current situation: I need to upload images into Magento folders (/media/... etc.)



Required: I can add any images path for a product



  • www.imagesss.com/abc/23.jpg,

  • www.123agesss.com/a13c/2343.jpg,

  • www.ima1323gesss.com/ab32c/2sdsd33.jpg









share|improve this question
















bumped to the homepage by Community 6 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • so you will be fetching images from different website ie: Each product may have images linked to different websites right ?

    – Dexter
    Feb 25 '15 at 12:20











  • My guess is you will grab the products via some sort of feed, parse the info and save it to your database. If you have a feed-parser, why not check if it already allows for external images, if not, see what it does with them in the code and modify it accordingly. I doubt you will be adding them manually and you haven't given enough info! This extension for example: magentocommerce.com/magento-connect/… only allows external images and not for them to be saved to your store, so it saved the image url to your db.

    – tecjam
    Feb 25 '15 at 14:38












  • If you have that much media from affiliates you should be able to afford a second server with less Cpu/memory and more disk space just to serve the images.

    – Melvyn
    Feb 25 '15 at 20:16











  • @Melvyn even if you do that, you've got to store the same images twice, and bother to keep them in sync with the master set of images.

    – quickshiftin
    May 17 '17 at 4:03











  • @quickshiftin Read up on NFS or similar technologies. If you want product images stored elsewhere, use a CDN (built-in). But being able to reference images stored somewhere (maybe, maybe not next week) on the web is not a good idea. It drastically changes the number of ways your site can break. Instead of adding diskspace, you'll hire someone to check product images.

    – Melvyn
    May 26 '17 at 12:20

















6















I am making a fashion store in Magento. I have affiliation with many stores and I don't want to save their product images on my server because of space issue, they require a lots of space more than 30 GB.



I want to add an absolute path for images so I can save space on my server.



Current situation: I need to upload images into Magento folders (/media/... etc.)



Required: I can add any images path for a product



  • www.imagesss.com/abc/23.jpg,

  • www.123agesss.com/a13c/2343.jpg,

  • www.ima1323gesss.com/ab32c/2sdsd33.jpg









share|improve this question
















bumped to the homepage by Community 6 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • so you will be fetching images from different website ie: Each product may have images linked to different websites right ?

    – Dexter
    Feb 25 '15 at 12:20











  • My guess is you will grab the products via some sort of feed, parse the info and save it to your database. If you have a feed-parser, why not check if it already allows for external images, if not, see what it does with them in the code and modify it accordingly. I doubt you will be adding them manually and you haven't given enough info! This extension for example: magentocommerce.com/magento-connect/… only allows external images and not for them to be saved to your store, so it saved the image url to your db.

    – tecjam
    Feb 25 '15 at 14:38












  • If you have that much media from affiliates you should be able to afford a second server with less Cpu/memory and more disk space just to serve the images.

    – Melvyn
    Feb 25 '15 at 20:16











  • @Melvyn even if you do that, you've got to store the same images twice, and bother to keep them in sync with the master set of images.

    – quickshiftin
    May 17 '17 at 4:03











  • @quickshiftin Read up on NFS or similar technologies. If you want product images stored elsewhere, use a CDN (built-in). But being able to reference images stored somewhere (maybe, maybe not next week) on the web is not a good idea. It drastically changes the number of ways your site can break. Instead of adding diskspace, you'll hire someone to check product images.

    – Melvyn
    May 26 '17 at 12:20













6












6








6








I am making a fashion store in Magento. I have affiliation with many stores and I don't want to save their product images on my server because of space issue, they require a lots of space more than 30 GB.



I want to add an absolute path for images so I can save space on my server.



Current situation: I need to upload images into Magento folders (/media/... etc.)



Required: I can add any images path for a product



  • www.imagesss.com/abc/23.jpg,

  • www.123agesss.com/a13c/2343.jpg,

  • www.ima1323gesss.com/ab32c/2sdsd33.jpg









share|improve this question
















I am making a fashion store in Magento. I have affiliation with many stores and I don't want to save their product images on my server because of space issue, they require a lots of space more than 30 GB.



I want to add an absolute path for images so I can save space on my server.



Current situation: I need to upload images into Magento folders (/media/... etc.)



Required: I can add any images path for a product



  • www.imagesss.com/abc/23.jpg,

  • www.123agesss.com/a13c/2343.jpg,

  • www.ima1323gesss.com/ab32c/2sdsd33.jpg






magento-1.9 product-images






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 25 '15 at 14:28









Flyingmana

5,18632163




5,18632163










asked Feb 25 '15 at 11:16









PawanKaushikPawanKaushik

312




312





bumped to the homepage by Community 6 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 6 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • so you will be fetching images from different website ie: Each product may have images linked to different websites right ?

    – Dexter
    Feb 25 '15 at 12:20











  • My guess is you will grab the products via some sort of feed, parse the info and save it to your database. If you have a feed-parser, why not check if it already allows for external images, if not, see what it does with them in the code and modify it accordingly. I doubt you will be adding them manually and you haven't given enough info! This extension for example: magentocommerce.com/magento-connect/… only allows external images and not for them to be saved to your store, so it saved the image url to your db.

    – tecjam
    Feb 25 '15 at 14:38












  • If you have that much media from affiliates you should be able to afford a second server with less Cpu/memory and more disk space just to serve the images.

    – Melvyn
    Feb 25 '15 at 20:16











  • @Melvyn even if you do that, you've got to store the same images twice, and bother to keep them in sync with the master set of images.

    – quickshiftin
    May 17 '17 at 4:03











  • @quickshiftin Read up on NFS or similar technologies. If you want product images stored elsewhere, use a CDN (built-in). But being able to reference images stored somewhere (maybe, maybe not next week) on the web is not a good idea. It drastically changes the number of ways your site can break. Instead of adding diskspace, you'll hire someone to check product images.

    – Melvyn
    May 26 '17 at 12:20

















  • so you will be fetching images from different website ie: Each product may have images linked to different websites right ?

    – Dexter
    Feb 25 '15 at 12:20











  • My guess is you will grab the products via some sort of feed, parse the info and save it to your database. If you have a feed-parser, why not check if it already allows for external images, if not, see what it does with them in the code and modify it accordingly. I doubt you will be adding them manually and you haven't given enough info! This extension for example: magentocommerce.com/magento-connect/… only allows external images and not for them to be saved to your store, so it saved the image url to your db.

    – tecjam
    Feb 25 '15 at 14:38












  • If you have that much media from affiliates you should be able to afford a second server with less Cpu/memory and more disk space just to serve the images.

    – Melvyn
    Feb 25 '15 at 20:16











  • @Melvyn even if you do that, you've got to store the same images twice, and bother to keep them in sync with the master set of images.

    – quickshiftin
    May 17 '17 at 4:03











  • @quickshiftin Read up on NFS or similar technologies. If you want product images stored elsewhere, use a CDN (built-in). But being able to reference images stored somewhere (maybe, maybe not next week) on the web is not a good idea. It drastically changes the number of ways your site can break. Instead of adding diskspace, you'll hire someone to check product images.

    – Melvyn
    May 26 '17 at 12:20
















so you will be fetching images from different website ie: Each product may have images linked to different websites right ?

– Dexter
Feb 25 '15 at 12:20





so you will be fetching images from different website ie: Each product may have images linked to different websites right ?

– Dexter
Feb 25 '15 at 12:20













My guess is you will grab the products via some sort of feed, parse the info and save it to your database. If you have a feed-parser, why not check if it already allows for external images, if not, see what it does with them in the code and modify it accordingly. I doubt you will be adding them manually and you haven't given enough info! This extension for example: magentocommerce.com/magento-connect/… only allows external images and not for them to be saved to your store, so it saved the image url to your db.

– tecjam
Feb 25 '15 at 14:38






My guess is you will grab the products via some sort of feed, parse the info and save it to your database. If you have a feed-parser, why not check if it already allows for external images, if not, see what it does with them in the code and modify it accordingly. I doubt you will be adding them manually and you haven't given enough info! This extension for example: magentocommerce.com/magento-connect/… only allows external images and not for them to be saved to your store, so it saved the image url to your db.

– tecjam
Feb 25 '15 at 14:38














If you have that much media from affiliates you should be able to afford a second server with less Cpu/memory and more disk space just to serve the images.

– Melvyn
Feb 25 '15 at 20:16





If you have that much media from affiliates you should be able to afford a second server with less Cpu/memory and more disk space just to serve the images.

– Melvyn
Feb 25 '15 at 20:16













@Melvyn even if you do that, you've got to store the same images twice, and bother to keep them in sync with the master set of images.

– quickshiftin
May 17 '17 at 4:03





@Melvyn even if you do that, you've got to store the same images twice, and bother to keep them in sync with the master set of images.

– quickshiftin
May 17 '17 at 4:03













@quickshiftin Read up on NFS or similar technologies. If you want product images stored elsewhere, use a CDN (built-in). But being able to reference images stored somewhere (maybe, maybe not next week) on the web is not a good idea. It drastically changes the number of ways your site can break. Instead of adding diskspace, you'll hire someone to check product images.

– Melvyn
May 26 '17 at 12:20





@quickshiftin Read up on NFS or similar technologies. If you want product images stored elsewhere, use a CDN (built-in). But being able to reference images stored somewhere (maybe, maybe not next week) on the web is not a good idea. It drastically changes the number of ways your site can break. Instead of adding diskspace, you'll hire someone to check product images.

– Melvyn
May 26 '17 at 12:20










1 Answer
1






active

oldest

votes


















0














There is a solution that requires a custom product attribute containing the image URL and an update to your theme's product view. Go Here






share|improve this answer























  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

    – Jai
    1 hour ago











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f58655%2fhow-do-i-add-product-images-as-url-instead-of-uploading-them-in-magento%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














There is a solution that requires a custom product attribute containing the image URL and an update to your theme's product view. Go Here






share|improve this answer























  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

    – Jai
    1 hour ago















0














There is a solution that requires a custom product attribute containing the image URL and an update to your theme's product view. Go Here






share|improve this answer























  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

    – Jai
    1 hour ago













0












0








0







There is a solution that requires a custom product attribute containing the image URL and an update to your theme's product view. Go Here






share|improve this answer













There is a solution that requires a custom product attribute containing the image URL and an update to your theme's product view. Go Here







share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 8 '18 at 2:59









Stephen FoxStephen Fox

715




715












  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

    – Jai
    1 hour ago

















  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

    – Jai
    1 hour ago
















While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

– Jai
1 hour ago





While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

– Jai
1 hour ago

















draft saved

draft discarded
















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f58655%2fhow-do-i-add-product-images-as-url-instead-of-uploading-them-in-magento%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

Fil:Tokke komm.svg

Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?