Skip to content

Instantly share code, notes, and snippets.

@dhargitai
Created January 30, 2015 14:51
Show Gist options
  • Save dhargitai/31fc1cdc4ab63f658524 to your computer and use it in GitHub Desktop.
Save dhargitai/31fc1cdc4ab63f658524 to your computer and use it in GitHub Desktop.
<?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