Skip to content

Instantly share code, notes, and snippets.

@Juli0s
Juli0s / delete_all_product.sql
Created February 3, 2017 14:33
Delete ALL products in Magento
DELETE FROM `catalog_product_entity` LIMIT 10000
@Juli0s
Juli0s / storeCodeId.php
Last active February 3, 2017 14:34
Get the store code ID from the store code
$storeCodeId = Mage::getModel('core/store')->load('us_en', 'code')->getId();