This phrase gave me nightmares for days as I was building the new website. We installed a ton of extensions to automate the website, and somewhere along the line some database tables got corrupted, so I had to start a what seemed like an endless game of cat and mouse chasing down what was really wrong with the site. I’ve compiled a list of everything I tried along the way to fix the issue:
-
- Make sure the var/locks folder is writable. Test out full permissions (chmod 777).
- Delete all of the .locks files from the var/locks folder.
- Backup your database, then run this query in phpmyadmin: DELETE FROM catalog_category_product_index;
- Try the magento cleanup tool
- Try the magento database repair tool
-
Backup your database and run this query in phpmyadmin:
-
DELETE cpop.* FROM catalog_product_option_price AS cpop
-
INNER JOIN catalog_product_option AS cpo
-
ON cpo.option_id = cpop.option_id
-
WHERE
-
cpo.type = ‘checkbox’ OR
-
cpo.type = ‘radio’ OR
-
cpo.type = ‘drop_down’;DELETE cpotp.* FROM catalog_product_option_type_price AS cpotp
-
INNER JOIN catalog_product_option_type_value AS cpotv
-
ON cpotv.option_type_id = cpotp.option_type_id
-
INNER JOIN catalog_product_option AS cpo
-
ON cpotv.option_id = cpo.option_id
-
WHERE
-
cpo.type <> ‘checkbox’ AND
-
cpo.type <> ‘radio’ AND
-
cpo.type <> ‘drop_down’;
-
After running all of these options and still not having any luck in the admin, I decided to try and reindex by command line. Just SSH into your site, and run this command:
-
php /path/to/magento/shell/indexer.php reindexall
Magento will then start to run the reindex process, updating the command line as it progresses. When it hits the error mark, it will show you what the actual error is. In my case, this is what I got:
-
Product Flat Data index process unknown error:
-
-
exception ‘PDOException’ with message ‘SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`alleight_bbcom/#sql-6d5d_2cb103`, CONSTRAINT `FK_CAT_PRD_FLAT_1_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON )’ in/home/alleight/public_html/bbcom/lib/Zend/Db/Statement/Pdo.php:228
In the error, you can see that there’s a problem with the catalog product flat data. We simply truncated the table catalog_flat_product_1, and voila. Reindex successful.
Revisions
- August 18, 2015 @ 16:05:40 [Current Revision] by admin
- August 18, 2015 @ 16:05:40 by admin
- August 18, 2015 @ 16:05:33 by admin
Revision Differences
August 18, 2015 @ 16:05:33 | Current Revision | ||
---|---|---|---|
Content | |||
Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | ||
Unchanged: This phrase gave me nightmares for days as I was building the new website. We installed a ton of extensions to automate the website, and somewhere along the line some database tables got corrupted, so I had to start a what seemed like an endless game of cat and mouse chasing down what was really wrong with the site. I’ve compiled a list of everything I tried along the way to fix the issue: | Unchanged: This phrase gave me nightmares for days as I was building the new website. We installed a ton of extensions to automate the website, and somewhere along the line some database tables got corrupted, so I had to start a what seemed like an endless game of cat and mouse chasing down what was really wrong with the site. I’ve compiled a list of everything I tried along the way to fix the issue: | ||
Unchanged: </p> | Unchanged: </p> | ||
Unchanged: <ol style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | Unchanged: <ol style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | ||
Unchanged: <li> | Unchanged: <li> | ||
Unchanged: <ol style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px;"> | Unchanged: <ol style="box-sizing: border-box; margin-top: 0px; margin-bottom: 0px;"> | ||
Unchanged: <li style="box-sizing: border-box;"> | Unchanged: <li style="box-sizing: border-box;"> | ||
Unchanged: Make sure the var/locks folder is writable. Test out full permissions (chmod 777). | Unchanged: Make sure the var/locks folder is writable. Test out full permissions (chmod 777). | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li style="box-sizing: border-box;"> | Unchanged: <li style="box-sizing: border-box;"> | ||
Unchanged: Delete all of the .locks files from the var/locks folder. | Unchanged: Delete all of the .locks files from the var/locks folder. | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li style="box-sizing: border-box;"> | Unchanged: <li style="box-sizing: border-box;"> | ||
Unchanged: Backup your database, then run this query in phpmyadmin: DELETE FROM catalog_category_ product_index; | Unchanged: Backup your database, then run this query in phpmyadmin: DELETE FROM catalog_category_ product_index; | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li style="box-sizing: border-box;"> | Unchanged: <li style="box-sizing: border-box;"> | ||
Unchanged: Try the <a href="http:// www.magentocommerce.com/wiki/ groups/227/resetting_file_ permissions" style="box-sizing: border-box; color: rgb(66, 139, 202); text-decoration: none; background: transparent;">magento cleanup tool </a> | Unchanged: Try the <a href="http:// www.magentocommerce.com/wiki/ groups/227/resetting_file_ permissions" style="box-sizing: border-box; color: rgb(66, 139, 202); text-decoration: none; background: transparent;">magento cleanup tool </a> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li style="box-sizing: border-box;"> | Unchanged: <li style="box-sizing: border-box;"> | ||
Unchanged: Try the magento database repair tool | Unchanged: Try the magento database repair tool | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li style="box-sizing: border-box;"> | Unchanged: <li style="box-sizing: border-box;"> | ||
Unchanged: Backup your database and run this query in phpmyadmin: | Unchanged: Backup your database and run this query in phpmyadmin: | ||
Added: <p> | |||
Added: | |||
Added: </p> | |||
Unchanged: <div class="bwp-syntax-block clearfix" style="box-sizing: border-box; margin: 10px 0px; position: relative; color: rgb(0, 0, 0); font-size: 12px; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; zoom: 1;"> | Unchanged: <div class="bwp-syntax-block clearfix" style="box-sizing: border-box; margin: 10px 0px; position: relative; color: rgb(0, 0, 0); font-size: 12px; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; zoom: 1;"> | ||
Unchanged: <div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced" style="box-sizing: border-box; width: 687.5px; overflow: auto; position: relative; margin: 0px; zoom: 1; height: 252px;"> | Unchanged: <div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced" style="box-sizing: border-box; width: 687.5px; overflow: auto; position: relative; margin: 0px; zoom: 1; height: 252px;"> | ||
Unchanged: <div class="php" style="box-sizing: border-box; font-family: monospace; margin: 0px; zoom: 1;"> | Unchanged: <div class="php" style="box-sizing: border-box; font-family: monospace; margin: 0px; zoom: 1;"> | ||
Unchanged: <ol style="box-sizing: border-box; margin: 0px; padding-right: 0px; padding-left: 0px;"> | Unchanged: <ol style="box-sizing: border-box; margin: 0px; padding-right: 0px; padding-left: 0px;"> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: DELETE cpop<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.*</span> FROM catalog_product_ option_price <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpop | Unchanged: DELETE cpop<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.*</span> FROM catalog_product_ option_price <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpop | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: INNER <span class="kw3" style="box-sizing: border-box; color: rgb(153, 0, 0);">JOIN</span> catalog_ product_option <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpo | Unchanged: INNER <span class="kw3" style="box-sizing: border-box; color: rgb(153, 0, 0);">JOIN</span> catalog_ product_option <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpo | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: ON cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_id <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> cpop<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>option_id | Unchanged: ON cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_id <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> cpop<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>option_id | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: WHERE | Unchanged: WHERE | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ checkbox’ </span> OR | Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ checkbox’ </span> OR | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ radio’< /span> OR | Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ radio’< /span> OR | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ drop_down’ </span><span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">;</span>DELETE cpotp<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.*</span> FROM catalog_product_ option_type_price <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpotp | Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ drop_down’ </span><span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">;</span>DELETE cpotp<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.*</span> FROM catalog_product_ option_type_price <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpotp | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: INNER <span class="kw3" style="box-sizing: border-box; color: rgb(153, 0, 0);">JOIN</span> catalog_ product_option_ type_value <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpotv | Unchanged: INNER <span class="kw3" style="box-sizing: border-box; color: rgb(153, 0, 0);">JOIN</span> catalog_ product_option_ type_value <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpotv | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: ON cpotv<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_type_id <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> cpotp<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_type_id | Unchanged: ON cpotv<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_type_id <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> cpotp<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_type_id | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: INNER <span class="kw3" style="box-sizing: border-box; color: rgb(153, 0, 0);">JOIN</span> catalog_ product_option <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpo | Unchanged: INNER <span class="kw3" style="box-sizing: border-box; color: rgb(153, 0, 0);">JOIN</span> catalog_ product_option <span class="kw1" style="box-sizing: border-box; color: rgb(177, 177, 0);">AS</span> cpo | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: ON cpotv<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_id <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>option_id | Unchanged: ON cpotv<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> option_id <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">=</span> cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>option_id | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: WHERE | Unchanged: WHERE | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);"><> </span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ checkbox’ </span> AND | Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);"><> </span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ checkbox’ </span> AND | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);"><> </span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ radio’< /span> AND | Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);"><> </span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ radio’< /span> AND | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);"><> </span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ drop_down’ </span><span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">;</span> | Unchanged: cpo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span> type <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);"><> </span> <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ drop_down’ </span><span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">;</span> | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: </ol> | Unchanged: </ol> | ||
Unchanged: </div> | Unchanged: </div> | ||
Added: <p> | |||
Added: | |||
Added: </p> | |||
Unchanged: </div> | Unchanged: </div> | ||
Added: <p> | |||
Added: | |||
Added: </p> | |||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: </ol> | Unchanged: </ol> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: </ol> | Unchanged: </ol> | ||
Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | ||
Unchanged: After running all of these options and still not having any luck in the admin, I decided to try and reindex by command line. Just SSH into your site, and run this command: | Unchanged: After running all of these options and still not having any luck in the admin, I decided to try and reindex by command line. Just SSH into your site, and run this command: | ||
Unchanged: </p> | Unchanged: </p> | ||
Unchanged: <div class="adsxpls" id="adsxpls2" style="box-sizing: border-box; font-family: Abel; font-size: 20px; line-height: 24px; padding: 7px 0px 7px 7px; float: right; margin: 0px;"> | Unchanged: <div class="adsxpls" id="adsxpls2" style="box-sizing: border-box; font-family: Abel; font-size: 20px; line-height: 24px; padding: 7px 0px 7px 7px; float: right; margin: 0px;"> | ||
Unchanged: <ins class="adsbygoogle" data-ad-client= "ca-pub-0320443245290735" data-ad-slot="" data-adsbygoogle- status="done" id="adsgoogle2" style="box-sizing: border-box; display: inline-block; width: 336px; height: 280px;"><ins id="aswift_1_expand" style="box-sizing: border-box; display: inline-table; border: none; height: 280px; margin: 0px; padding: 0px; position: relative; visibility: visible; width: 336px; background-color: transparent;"><ins id="aswift_1_anchor" style="box-sizing: border-box; display: block; border: none; height: 280px; margin: 0px; padding: 0px; position: relative; visibility: visible; width: 336px; background-color: transparent;"><iframe allowfullscreen="true" allowtransparency="true" frameborder="0" height="280" hspace="0" id="aswift_1" marginheight="0" marginwidth="0" name="aswift_1" scrolling="no" style="box-sizing: border-box; max-width: 100%; width: 336px; left: 0px; position: absolute; top: 0px;" vspace="0" width="336">< /iframe></ins> </ins></ins> | Unchanged: <ins class="adsbygoogle" data-ad-client= "ca-pub-0320443245290735" data-ad-slot="" data-adsbygoogle- status="done" id="adsgoogle2" style="box-sizing: border-box; display: inline-block; width: 336px; height: 280px;"><ins id="aswift_1_expand" style="box-sizing: border-box; display: inline-table; border: none; height: 280px; margin: 0px; padding: 0px; position: relative; visibility: visible; width: 336px; background-color: transparent;"><ins id="aswift_1_anchor" style="box-sizing: border-box; display: block; border: none; height: 280px; margin: 0px; padding: 0px; position: relative; visibility: visible; width: 336px; background-color: transparent;"><iframe allowfullscreen="true" allowtransparency="true" frameborder="0" height="280" hspace="0" id="aswift_1" marginheight="0" marginwidth="0" name="aswift_1" scrolling="no" style="box-sizing: border-box; max-width: 100%; width: 336px; left: 0px; position: absolute; top: 0px;" vspace="0" width="336">< /iframe></ins> </ins></ins> | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: <div class="bwp-syntax-block clearfix" style="box-sizing: border-box; margin: 10px 0px; position: relative; color: rgb(0, 0, 0); font-size: 12px; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; zoom: 1;"> | Unchanged: <div class="bwp-syntax-block clearfix" style="box-sizing: border-box; margin: 10px 0px; position: relative; color: rgb(0, 0, 0); font-size: 12px; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; zoom: 1;"> | ||
Unchanged: <div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced" style="box-sizing: border-box; width: 767.5px; overflow: auto; position: relative; margin: 0px; zoom: 1;"> | Unchanged: <div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced" style="box-sizing: border-box; width: 767.5px; overflow: auto; position: relative; margin: 0px; zoom: 1;"> | ||
Unchanged: <div class="php" style="box-sizing: border-box; font-family: monospace; margin: 0px; zoom: 1;"> | Unchanged: <div class="php" style="box-sizing: border-box; font-family: monospace; margin: 0px; zoom: 1;"> | ||
Unchanged: <ol style="box-sizing: border-box; margin: 0px; padding-right: 0px; padding-left: 0px;"> | Unchanged: <ol style="box-sizing: border-box; margin: 0px; padding-right: 0px; padding-left: 0px;"> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: php <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>path<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>to<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> magento<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>shell<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> indexer<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>php reindexall | Unchanged: php <span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>path<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>to<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> magento<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>shell<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> indexer<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>php reindexall | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: </ol> | Unchanged: </ol> | ||
Unchanged: </div> | Unchanged: </div> | ||
Added: <p> | |||
Added: | |||
Added: </p> | |||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | ||
Unchanged: Magento will then start to run the reindex process, updating the command line as it progresses. When it hits the error mark, it will show you what the actual error is. In my case, this is what I got: | Unchanged: Magento will then start to run the reindex process, updating the command line as it progresses. When it hits the error mark, it will show you what the actual error is. In my case, this is what I got: | ||
Unchanged: </p> | Unchanged: </p> | ||
Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | ||
Unchanged: | Unchanged: | ||
Unchanged: </p> | Unchanged: </p> | ||
Unchanged: <div class="bwp-syntax-block clearfix" style="box-sizing: border-box; margin: 10px 0px; position: relative; color: rgb(0, 0, 0); font-size: 12px; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; zoom: 1;"> | Unchanged: <div class="bwp-syntax-block clearfix" style="box-sizing: border-box; margin: 10px 0px; position: relative; color: rgb(0, 0, 0); font-size: 12px; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; zoom: 1;"> | ||
Unchanged: <div class="bwp-syntax-toolbar" style="box-sizing: border-box; position: absolute; top: 0px; right: 0px; z-index: 10000; margin: 0px; opacity: 0.460770452136078;"> | Unchanged: <div class="bwp-syntax-toolbar" style="box-sizing: border-box; position: absolute; top: 0px; right: 0px; z-index: 10000; margin: 0px; opacity: 0.460770452136078;"> | ||
Unchanged: <div class="bwp-syntax-control" style="box-sizing: border-box; line-height: 15px; margin: 0px;"> | Unchanged: <div class="bwp-syntax-control" style="box-sizing: border-box; line-height: 15px; margin: 0px;"> | ||
Added: | |||
Unchanged: </div> | Unchanged: </div> | ||
Added: <p> | |||
Added: | |||
Added: </p> | |||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: <div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced" style="box-sizing: border-box; width: 767.5px; overflow: auto; position: relative; margin: 0px; zoom: 1;"> | Unchanged: <div class="bwp-syntax-wrapper clearfix bwp-syntax-advanced" style="box-sizing: border-box; width: 767.5px; overflow: auto; position: relative; margin: 0px; zoom: 1;"> | ||
Unchanged: <div class="php" style="box-sizing: border-box; font-family: monospace; margin: 0px; zoom: 1;"> | Unchanged: <div class="php" style="box-sizing: border-box; font-family: monospace; margin: 0px; zoom: 1;"> | ||
Unchanged: <ol style="box-sizing: border-box; margin: 0px; padding-right: 0px; padding-left: 0px;"> | Unchanged: <ol style="box-sizing: border-box; margin: 0px; padding-right: 0px; padding-left: 0px;"> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: Product Flat Data index process unknown error<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">:</span> | Unchanged: Product Flat Data index process unknown error<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">:</span> | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | Unchanged: <li class="li2" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier; background-color: rgb(248, 248, 248);"> | ||
Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de2" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: | Unchanged: | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | Unchanged: <li class="li1" style="box-sizing: border-box; color: rgb(175, 175, 175); list-style-position: outside; margin: 0px 0px 0px 45px; padding: 0px; border: none; line-height: 1.4; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier;"> | ||
Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | Unchanged: <div class="de1" style="box-sizing: border-box; margin: 0px; zoom: 1; border-left-width: 3px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding: 0px 5px; color: rgb(0, 0, 0);"> | ||
Unchanged: exception <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ PDOException’ </span> with message <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`alleight_bbcom/ #sql-6d5d_2cb103`, CONSTRAINT `FK_CAT_PRD_FLAT_ 1_ENTT_ID_CAT_ PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON )’</span> in<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>home<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> alleight<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> public_html<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>bbcom<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>lib<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>Zend<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>Db<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> Statement<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>Pdo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>php<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">:</span><span class="nu0" style="box-sizing: border-box; color: rgb(204, 102, 204);">228</span> | Unchanged: exception <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ PDOException’ </span> with message <span class="st_h" style="box-sizing: border-box; color: rgb(0, 0, 255);">‘ SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`alleight_bbcom/ #sql-6d5d_2cb103`, CONSTRAINT `FK_CAT_PRD_FLAT_ 1_ENTT_ID_CAT_ PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON )’</span> in<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>home<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> alleight<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> public_html<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>bbcom<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>lib<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>Zend<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>Db<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span> Statement<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">/</span>Pdo<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">.</span>php<span class="sy0" style="box-sizing: border-box; color: rgb(51, 153, 51);">:</span><span class="nu0" style="box-sizing: border-box; color: rgb(204, 102, 204);">228</span> | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </li> | Unchanged: </li> | ||
Unchanged: </ol> | Unchanged: </ol> | ||
Unchanged: </div> | Unchanged: </div> | ||
Added: <p> | |||
Added: | |||
Added: </p> | |||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: </div> | Unchanged: </div> | ||
Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | Unchanged: <p style="box-sizing: border-box; margin: 0px 0px 10px; font-family: Abel; font-size: 20px; line-height: 24px;"> | ||
Unchanged: In the error, you can see that there’s a problem with the catalog product flat data. We simply truncated the table catalog_flat_product_1, and voila. Reindex successful. | Unchanged: In the error, you can see that there’s a problem with the catalog product flat data. We simply truncated the table catalog_flat_product_1, and voila. Reindex successful. | ||
Unchanged: </p> | Unchanged: </p> |
Note: Spaces may be added to comparison text to allow better line wrapping.
No comments yet.