Guest User

Untitled

a guest
Oct 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. define('MAGENTO', realpath(dirname(__FILE__)));
  4. require_once MAGENTO . '/app/Mage.php';
  5. Mage::app();
  6. $collection = Mage::getModel('catalog/product')->getCollection();
  7. foreach($collection as $product) {
  8. echo "<p>".$product->getSku()." Deleted.</p>";
  9. $product->delete();
  10. }
Add Comment
Please, Sign In to add comment