Created
January 30, 2015 14:51
-
-
Save dhargitai/31fc1cdc4ab63f658524 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
/** | |
* Error reporting | |
*/ | |
error_reporting(E_ALL | E_STRICT); | |
ini_set('display_errors', 1); | |
/** | |
* Compilation includes configuration file | |
*/ | |
define('MAGENTO_ROOT', dirname(getcwd())); | |
$mageFilename = MAGENTO_ROOT . '/app/Mage.php'; | |
require_once $mageFilename; | |
Mage::setIsDeveloperMode(true); | |
Mage::init('admin'); | |
# ------------------------------ # | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment