Item (Mage_Catalog_Model_Product) with the same id “35” already existItem (Mage_Core_Model_Config_Data) with the same id “0” already existMagento Admin Login Error: Item (Mage_Sales_Model_Order) with the same id “1178” already existGrid Export: Item (Neo_Affiliate_Model_Affiliate) with the same id “2977” already existErrors after re-index: Item (Mage_Core_Model_Url_Rewrite) with the same id “0” already exist"Item (Mage_Sales_Model_Order) with the same id already exist after Plesk UpgradeItem (Mage_Admin_Model_Block) with the same id “0” already existMagento error when product added to cart Item (Mage_Catalog_Model_Product) with the same id “1698” already existMganto1.9 : Item (Mage_Sales_Model_Order) with same id already existMagento 1.9: Maximum execution timeout after loginHow to get products filtering by category and attributes?

Plausibility of Mushroom Buildings

Why the color red for the Republican Party

How can I ensure my trip to the UK will not have to be cancelled because of Brexit?

How to draw cubes in a 3 dimensional plane

What are some noteworthy "mic-drop" moments in math?

How are showroom/display vehicles prepared?

Bash script should only kill those instances of another script's that it has launched

Examples of a statistic that is not independent of sample's distribution?

Should I take out a loan for a friend to invest on my behalf?

How can I get players to stop ignoring or overlooking the plot hooks I'm giving them?

UART pins to unpowered MCU?

What are the threaded holes in Manfrotto camera brackets?

Signed and unsigned numbers

Is "history" a male-biased word ("his+story")?

How to secure an aircraft at a transient parking space?

What Happens when Passenger Refuses to Fly Boeing 737 Max?

Can one live in the U.S. and not use a credit card?

Accepted offer letter, position changed

Find longest word in a string: are any of these algorithms good?

List elements digit difference sort

Do recommendation systems necessarily use machine learning algorithms?

How do I express some one as a black person?

Do f-stop and exposure time perfectly cancel?

Does the nature of the Apocalypse in The Umbrella Academy change from the first to the last episode?



Item (Mage_Catalog_Model_Product) with the same id “35” already exist


Item (Mage_Core_Model_Config_Data) with the same id “0” already existMagento Admin Login Error: Item (Mage_Sales_Model_Order) with the same id “1178” already existGrid Export: Item (Neo_Affiliate_Model_Affiliate) with the same id “2977” already existErrors after re-index: Item (Mage_Core_Model_Url_Rewrite) with the same id “0” already exist"Item (Mage_Sales_Model_Order) with the same id already exist after Plesk UpgradeItem (Mage_Admin_Model_Block) with the same id “0” already existMagento error when product added to cart Item (Mage_Catalog_Model_Product) with the same id “1698” already existMganto1.9 : Item (Mage_Sales_Model_Order) with same id already existMagento 1.9: Maximum execution timeout after loginHow to get products filtering by category and attributes?













0















In admin, I can create multiple categories to shown in homepage.
This all categories are called on homepage via widget.
This is working as expected if all categories have unique products.



Suppose One product id is same in two category, magento give me error as
'Item (Mage_Catalog_Model_Product) with the same id "35" already exist'



So I researched and found one suggestion to add unique serial id to beginning of table by adding



SELECT 
`e`.*,
`category_products_grid`.`product_id`,
`category_products`.*,
`eav_name`.`value` AS `category_name`,
`eav_url`.`value` AS `category_url`
FROM
`catalog_product_entity` AS `e`
INNER JOIN `category_products_grid` ON category_products_grid.product_id =
e.entity_id
INNER JOIN `category_products` ON category_products_grid.id =
category_products.id
INNER JOIN `catalog_category_entity_varchar` AS `eav_name` ON eav_name.entity_id = category_products.category
and eav_name.attribute_id = 43
INNER JOIN `catalog_category_entity_varchar` AS `eav_url` ON eav_url.entity_id = category_products.category
and eav_url.attribute_id = 59


And the result is shown below
enter image description here.



Can anyone help me with this query to append in magentoway?
If any one can suggest other way around, it will be helpful as well.










share|improve this question




























    0















    In admin, I can create multiple categories to shown in homepage.
    This all categories are called on homepage via widget.
    This is working as expected if all categories have unique products.



    Suppose One product id is same in two category, magento give me error as
    'Item (Mage_Catalog_Model_Product) with the same id "35" already exist'



    So I researched and found one suggestion to add unique serial id to beginning of table by adding



    SELECT 
    `e`.*,
    `category_products_grid`.`product_id`,
    `category_products`.*,
    `eav_name`.`value` AS `category_name`,
    `eav_url`.`value` AS `category_url`
    FROM
    `catalog_product_entity` AS `e`
    INNER JOIN `category_products_grid` ON category_products_grid.product_id =
    e.entity_id
    INNER JOIN `category_products` ON category_products_grid.id =
    category_products.id
    INNER JOIN `catalog_category_entity_varchar` AS `eav_name` ON eav_name.entity_id = category_products.category
    and eav_name.attribute_id = 43
    INNER JOIN `catalog_category_entity_varchar` AS `eav_url` ON eav_url.entity_id = category_products.category
    and eav_url.attribute_id = 59


    And the result is shown below
    enter image description here.



    Can anyone help me with this query to append in magentoway?
    If any one can suggest other way around, it will be helpful as well.










    share|improve this question


























      0












      0








      0








      In admin, I can create multiple categories to shown in homepage.
      This all categories are called on homepage via widget.
      This is working as expected if all categories have unique products.



      Suppose One product id is same in two category, magento give me error as
      'Item (Mage_Catalog_Model_Product) with the same id "35" already exist'



      So I researched and found one suggestion to add unique serial id to beginning of table by adding



      SELECT 
      `e`.*,
      `category_products_grid`.`product_id`,
      `category_products`.*,
      `eav_name`.`value` AS `category_name`,
      `eav_url`.`value` AS `category_url`
      FROM
      `catalog_product_entity` AS `e`
      INNER JOIN `category_products_grid` ON category_products_grid.product_id =
      e.entity_id
      INNER JOIN `category_products` ON category_products_grid.id =
      category_products.id
      INNER JOIN `catalog_category_entity_varchar` AS `eav_name` ON eav_name.entity_id = category_products.category
      and eav_name.attribute_id = 43
      INNER JOIN `catalog_category_entity_varchar` AS `eav_url` ON eav_url.entity_id = category_products.category
      and eav_url.attribute_id = 59


      And the result is shown below
      enter image description here.



      Can anyone help me with this query to append in magentoway?
      If any one can suggest other way around, it will be helpful as well.










      share|improve this question
















      In admin, I can create multiple categories to shown in homepage.
      This all categories are called on homepage via widget.
      This is working as expected if all categories have unique products.



      Suppose One product id is same in two category, magento give me error as
      'Item (Mage_Catalog_Model_Product) with the same id "35" already exist'



      So I researched and found one suggestion to add unique serial id to beginning of table by adding



      SELECT 
      `e`.*,
      `category_products_grid`.`product_id`,
      `category_products`.*,
      `eav_name`.`value` AS `category_name`,
      `eav_url`.`value` AS `category_url`
      FROM
      `catalog_product_entity` AS `e`
      INNER JOIN `category_products_grid` ON category_products_grid.product_id =
      e.entity_id
      INNER JOIN `category_products` ON category_products_grid.id =
      category_products.id
      INNER JOIN `catalog_category_entity_varchar` AS `eav_name` ON eav_name.entity_id = category_products.category
      and eav_name.attribute_id = 43
      INNER JOIN `catalog_category_entity_varchar` AS `eav_url` ON eav_url.entity_id = category_products.category
      and eav_url.attribute_id = 59


      And the result is shown below
      enter image description here.



      Can anyone help me with this query to append in magentoway?
      If any one can suggest other way around, it will be helpful as well.







      magento-1.9 database






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 12 mins ago









      Muhammad Hasham

      2,2581630




      2,2581630










      asked 17 mins ago









      VandanaVandana

      12




      12




















          0






          active

          oldest

          votes











          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%2f265393%2fitem-mage-catalog-model-product-with-the-same-id-35-already-exist%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f265393%2fitem-mage-catalog-model-product-with-the-same-id-35-already-exist%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?