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;
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
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.
|
show 2 more comments
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
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
|
show 2 more comments
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
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
magento-1.9 product-images
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
|
show 2 more comments
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
|
show 2 more comments
1 Answer
1
active
oldest
votes
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
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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