Skip to content

Instantly share code, notes, and snippets.

@vmasciotta
vmasciotta / httpd.conf
Last active August 29, 2015 14:02
Example Demo VirtualHost Magento
NameVirtualHost *:80
Include /etc/httpd/vhosts.d/*.conf
@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);