Skip to content

Instantly share code, notes, and snippets.

View shahbaztariq's full-sized avatar
🤔

Shahbaz Tariq shahbaztariq

🤔
View GitHub Profile
@vmasciotta
vmasciotta / magento_reset_orders
Created July 8, 2014 08:50
Sql instructions to reset test orders and customers
-- *****************for customers*****************
SET FOREIGN_KEY_CHECKS=0;
-- reset customers
TRUNCATE customer_address_entity;
TRUNCATE customer_address_entity_datetime;
TRUNCATE customer_address_entity_decimal;
TRUNCATE customer_address_entity_int;
TRUNCATE customer_address_entity_text;
TRUNCATE customer_address_entity_varchar;
@vmasciotta
vmasciotta / sandbox.php
Last active August 29, 2015 14:01
Magento Sandbox
<?php
ini_set('display_errors', 1);
require "app/Mage.php";
Mage::init();
Mage::setIsDeveloperMode(true);
umask(0);