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
termcapinfo xterm* ti@:te@ | |
startup_message off | |
vbell off | |
autodetach on | |
altscreen on | |
shelltitle "$ |bash" | |
defscrollback 10000 | |
defutf8 on | |
nonblock on | |
# ©2007 dsplabs.com.au |
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
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
wget https://github.com/OpenMage/magento-mirror/archive/1.9.1.1.zip | |
wget https://github.com/OpenMage/magento-mirror/archive/1.9.1.0.zip | |
wget https://github.com/OpenMage/magento-mirror/archive/1.9.0.1.zip | |
wget https://github.com/OpenMage/magento-mirror/archive/1.8.1.0.zip | |
wget https://github.com/OpenMage/magento-mirror/archive/1.8.0.0.zip | |
wget https://github.com/OpenMage/magento-mirror/archive/1.9.1.1.tar.gz |
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 | |
// Base-name | |
$name = 'foobar'; | |
// Init Magento | |
require_once 'app/Mage.php'; | |
Mage::app(); | |
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); | |
// Create the root catalog |