Magento show wrong image when products doesn't have oneWhy product images are not loading using CDN URL?Get access to images with 2 different URLsReceive Magento Logo when getting product imageImage urls in magentoMagento 2.1.2 placeholder image for product details pageProduct image not showing in Category Page In Magento 2.1.6What are the different parts of an image URL, and how to generate new sizes?Magento 2 : Change Product Default ImageMagento 2 product image is blankCache problem old images - Magento 1.9

Why dont electromagnetic waves interact with each other?

What does it mean to describe someone as a butt steak?

"to be prejudice towards/against someone" vs "to be prejudiced against/towards someone"

Why not use SQL instead of GraphQL?

Theorems that impeded progress

How old can references or sources in a thesis be?

Test whether all array elements are factors of a number

What defenses are there against being summoned by the Gate spell?

Why do I get two different answers for this counting problem?

What is the offset in a seaplane's hull?

tikz: show 0 at the axis origin

Is a tag line useful on a cover?

What does "Puller Prush Person" mean?

Have astronauts in space suits ever taken selfies? If so, how?

What are the differences between the usage of 'it' and 'they'?

Fencing style for blades that can attack from a distance

Mathematical cryptic clues

Python: next in for loop

Risk of getting Chronic Wasting Disease (CWD) in the United States?

Why can't I see bouncing of a switch on an oscilloscope?

Why was the small council so happy for Tyrion to become the Master of Coin?

TGV timetables / schedules?

Today is the Center

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)



Magento show wrong image when products doesn't have one


Why product images are not loading using CDN URL?Get access to images with 2 different URLsReceive Magento Logo when getting product imageImage urls in magentoMagento 2.1.2 placeholder image for product details pageProduct image not showing in Category Page In Magento 2.1.6What are the different parts of an image URL, and how to generate new sizes?Magento 2 : Change Product Default ImageMagento 2 product image is blankCache problem old images - Magento 1.9






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








4















I have a problem with products with no image.
I have set the Product Image Placeholders in the backend at




System > Configurations > Catalog > Product Image Placeholders




It works well with the majority of products with no image.



But often it happens that instead showing the placeholder, Magento shows a random product's image.



Tracking the problem I realised that the catalog media cache has this wrong photo, even when the backend shows that the product has no photo at all. This is an example path:




/media/catalog/product/cache/1/image/483x398/9df78eab33525d08d6e5fb8d27136e95/1/7




I cleared all the caches and the wrong image is regenerated again. The only solution I could find is: select the product in the backend, and without changing anything, hit the "save" button.



I hope I explained myself clearly.










share|improve this question




























    4















    I have a problem with products with no image.
    I have set the Product Image Placeholders in the backend at




    System > Configurations > Catalog > Product Image Placeholders




    It works well with the majority of products with no image.



    But often it happens that instead showing the placeholder, Magento shows a random product's image.



    Tracking the problem I realised that the catalog media cache has this wrong photo, even when the backend shows that the product has no photo at all. This is an example path:




    /media/catalog/product/cache/1/image/483x398/9df78eab33525d08d6e5fb8d27136e95/1/7




    I cleared all the caches and the wrong image is regenerated again. The only solution I could find is: select the product in the backend, and without changing anything, hit the "save" button.



    I hope I explained myself clearly.










    share|improve this question
























      4












      4








      4








      I have a problem with products with no image.
      I have set the Product Image Placeholders in the backend at




      System > Configurations > Catalog > Product Image Placeholders




      It works well with the majority of products with no image.



      But often it happens that instead showing the placeholder, Magento shows a random product's image.



      Tracking the problem I realised that the catalog media cache has this wrong photo, even when the backend shows that the product has no photo at all. This is an example path:




      /media/catalog/product/cache/1/image/483x398/9df78eab33525d08d6e5fb8d27136e95/1/7




      I cleared all the caches and the wrong image is regenerated again. The only solution I could find is: select the product in the backend, and without changing anything, hit the "save" button.



      I hope I explained myself clearly.










      share|improve this question














      I have a problem with products with no image.
      I have set the Product Image Placeholders in the backend at




      System > Configurations > Catalog > Product Image Placeholders




      It works well with the majority of products with no image.



      But often it happens that instead showing the placeholder, Magento shows a random product's image.



      Tracking the problem I realised that the catalog media cache has this wrong photo, even when the backend shows that the product has no photo at all. This is an example path:




      /media/catalog/product/cache/1/image/483x398/9df78eab33525d08d6e5fb8d27136e95/1/7




      I cleared all the caches and the wrong image is regenerated again. The only solution I could find is: select the product in the backend, and without changing anything, hit the "save" button.



      I hope I explained myself clearly.







      magento-1.8 cache product-images ce-1.8.1.0 placeholder






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 14 '16 at 15:37









      LuksLuks

      1088




      1088




















          2 Answers
          2






          active

          oldest

          votes


















          0














          It is a core issue. You can read about it, and also fix it from the official Magento2 GitHub:



          MAGETWO-53036: [GITHUB] Base image placeholder issue #4549 (https://github.com/magento/magento2/commit/b065cd3e7201c1f7b0b45efe29020662d15ad9f1)






          share|improve this answer























          • It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

            – Luks
            Nov 24 '16 at 20:33






          • 1





            Sorry!! I hope you find the solution.

            – Slashhh
            Dec 1 '16 at 10:51


















          0














          I also had this issue in Magento 2.1.6.



          Yes, for individual product you can just save the product in admin without changing anything.



          If you need to do this for all products at once, you can use the following command:



          php bin/magento catalog:images:resize


          This will take some time to complete as it creates cache images for all products.






          share|improve this answer























          • It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

            – Luks
            May 11 '17 at 19:36












          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%2f140942%2fmagento-show-wrong-image-when-products-doesnt-have-one%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          It is a core issue. You can read about it, and also fix it from the official Magento2 GitHub:



          MAGETWO-53036: [GITHUB] Base image placeholder issue #4549 (https://github.com/magento/magento2/commit/b065cd3e7201c1f7b0b45efe29020662d15ad9f1)






          share|improve this answer























          • It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

            – Luks
            Nov 24 '16 at 20:33






          • 1





            Sorry!! I hope you find the solution.

            – Slashhh
            Dec 1 '16 at 10:51















          0














          It is a core issue. You can read about it, and also fix it from the official Magento2 GitHub:



          MAGETWO-53036: [GITHUB] Base image placeholder issue #4549 (https://github.com/magento/magento2/commit/b065cd3e7201c1f7b0b45efe29020662d15ad9f1)






          share|improve this answer























          • It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

            – Luks
            Nov 24 '16 at 20:33






          • 1





            Sorry!! I hope you find the solution.

            – Slashhh
            Dec 1 '16 at 10:51













          0












          0








          0







          It is a core issue. You can read about it, and also fix it from the official Magento2 GitHub:



          MAGETWO-53036: [GITHUB] Base image placeholder issue #4549 (https://github.com/magento/magento2/commit/b065cd3e7201c1f7b0b45efe29020662d15ad9f1)






          share|improve this answer













          It is a core issue. You can read about it, and also fix it from the official Magento2 GitHub:



          MAGETWO-53036: [GITHUB] Base image placeholder issue #4549 (https://github.com/magento/magento2/commit/b065cd3e7201c1f7b0b45efe29020662d15ad9f1)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 24 '16 at 15:20









          SlashhhSlashhh

          564




          564












          • It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

            – Luks
            Nov 24 '16 at 20:33






          • 1





            Sorry!! I hope you find the solution.

            – Slashhh
            Dec 1 '16 at 10:51

















          • It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

            – Luks
            Nov 24 '16 at 20:33






          • 1





            Sorry!! I hope you find the solution.

            – Slashhh
            Dec 1 '16 at 10:51
















          It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

          – Luks
          Nov 24 '16 at 20:33





          It's a similar problem, but not the same. In my case a random photo from a random product is showing, not an old placeholder. Also the solution linked is for Magento2, I'm using Magento 1.8. But it seems to be a similar issue, maybe it have a similar solution, thanks.

          – Luks
          Nov 24 '16 at 20:33




          1




          1





          Sorry!! I hope you find the solution.

          – Slashhh
          Dec 1 '16 at 10:51





          Sorry!! I hope you find the solution.

          – Slashhh
          Dec 1 '16 at 10:51













          0














          I also had this issue in Magento 2.1.6.



          Yes, for individual product you can just save the product in admin without changing anything.



          If you need to do this for all products at once, you can use the following command:



          php bin/magento catalog:images:resize


          This will take some time to complete as it creates cache images for all products.






          share|improve this answer























          • It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

            – Luks
            May 11 '17 at 19:36
















          0














          I also had this issue in Magento 2.1.6.



          Yes, for individual product you can just save the product in admin without changing anything.



          If you need to do this for all products at once, you can use the following command:



          php bin/magento catalog:images:resize


          This will take some time to complete as it creates cache images for all products.






          share|improve this answer























          • It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

            – Luks
            May 11 '17 at 19:36














          0












          0








          0







          I also had this issue in Magento 2.1.6.



          Yes, for individual product you can just save the product in admin without changing anything.



          If you need to do this for all products at once, you can use the following command:



          php bin/magento catalog:images:resize


          This will take some time to complete as it creates cache images for all products.






          share|improve this answer













          I also had this issue in Magento 2.1.6.



          Yes, for individual product you can just save the product in admin without changing anything.



          If you need to do this for all products at once, you can use the following command:



          php bin/magento catalog:images:resize


          This will take some time to complete as it creates cache images for all products.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered May 10 '17 at 8:04









          Mukesh ChapagainMukesh Chapagain

          3,88612243




          3,88612243












          • It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

            – Luks
            May 11 '17 at 19:36


















          • It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

            – Luks
            May 11 '17 at 19:36

















          It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

          – Luks
          May 11 '17 at 19:36






          It's good to know i'm not alone! It's a good workaround but apparently there's no "bin/magento" in 1.8. But I could make a script myself. For now I add a generic image in all my products with no photo, a "manual placeholder", if you will. Thanks!

          – Luks
          May 11 '17 at 19:36


















          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%2f140942%2fmagento-show-wrong-image-when-products-doesnt-have-one%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

          Sum ergo cogito? 1 nng

          419 nièngy_Soadمي 19bal1.5o_g

          Queiggey Chernihivv 9NnOo i Zw X QqKk LpB