This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- This query delelets all customers and orders from your | |
| -- Magento 1.* install. Handy, if you have a bloated | |
| -- Magento database and you need to do a bit | |
| -- of cleaning up for use on a local machine. | |
| -- | |
| -- Replace PREFIX_ with your current Magento table prefix. | |
| -- | |
| -- USE AT OWN RISK. ALWAY BACKUP YOUR DATABASE FIRST. | |
| -- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/app/Mage.php b/app/Mage.php | |
| index 0e650eebb4f..9c18e222689 100644 | |
| --- a/app/Mage.php | |
| +++ b/app/Mage.php | |
| @@ -798,9 +798,9 @@ public static function log($message, $level = null, $file = '', $forceLog = fals | |
| ',', | |
| (string) self::getConfig()->getNode('dev/log/allowedFileExtensions', Mage_Core_Model_Store::DEFAULT_CODE) | |
| ); | |
| - $logValidator = new Zend_Validate_File_Extension($_allowedFileExtensions); | |
| $logDir = self::getBaseDir('var') . DS . 'log'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AS": "American Samoa", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", | |
| "DE": "Delaware", |
OlderNewer