How do I add Product Images as URL instead of uploading them in Magento?Can Magento 1.9 be configured to load...
How exactly does Hawking radiation decrease the mass of black holes?
What happened to Captain America in Endgame?
How can the Githyanki Supreme Commander move while insubstantial?
Does a large simulator bay have standard public address announcements?
Coordinate my way to the name of the (video) game
"You've called the wrong number" or "You called the wrong number"
How to fry ground beef so it is well-browned
How to write a column outside the braces in a matrix?
Critique of timeline aesthetic
Can an Area of Effect spell cast outside a Prismatic Wall extend inside it?
How to pronounce 'c++' in Spanish
What makes accurate emulation of old systems a difficult task?
What are the steps to solving this definite integral?
A Note on N!
Are there physical dangers to preparing a prepared piano?
Can I criticise the more senior developers around me for not writing clean code?
Discriminated by senior researcher because of my ethnicity
"Hidden" theta-term in Hamiltonian formulation of Yang-Mills theory
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
Did the BCPL programming language support floats?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
How to have a sharp product image?
Re-entry to Germany after vacation using blue card
Overlay of two functions leaves gaps
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♦ 2 mins 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♦ 2 mins 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♦ 2 mins 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♦ 2 mins 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
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
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
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
add a comment |
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