./mage config-set preferred_state stable
./mage clear-cache
./mage sync
./mage download community Module_Name
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
| /** | |
| * Encryption class for encrypt/decrypt that works between programming languages. | |
| * | |
| * @author Vee Winch. | |
| * @link https://stackoverflow.com/questions/41222162/encrypt-in-php-openssl-and-decrypt-in-javascript-cryptojs Reference. | |
| * @link https://github.com/brix/crypto-js/releases crypto-js.js can be download from here. | |
| */ | |
| class Encryption { |
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
| # driver wifi RTL8821AU for orangepi one | |
| apt-get install linux-headers-sun8i binutils-arm-none-eabi gcc-arm-none-eabi | |
| git clone https://github.com/paralin/rtl8821au | |
| cd rtl8821au | |
| # open make file | |
| vim Makefile |
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
| <?xml version="1.0"?> | |
| <layout> | |
| <default> | |
| <!--Root/Default Layouts--> | |
| <reference name="root"> | |
| <!--Appending Block--> | |
| <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/> | |
| </reference> | |
| <!--CSS and JS Files--> |
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
| <?php | |
| error_reporting(E_ALL); | |
| ini_set("display_errors", 1); | |
| $config=array(); | |
| $config["hostname"] = "my-hostname-with-magento.com"; | |
| $config["login"] = "soapuser"; | |
| $config["password"] = "soappassword"; | |
| $config["customer_as_guest"] = TRUE; | |
| $config["customer_id"] = 261; //only if you don't want as Guest |
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
| #!/bin/bash | |
| ### | |
| # | |
| # Copyright (c) 2011 Cake Development Corporation (http://cakedc.com) | |
| # | |
| # Ubuntu 11.04 based web server installation script | |
| # Run this by executing the following from a fresh install of Ubuntu 11.04 server: | |
| # | |
| # bash -c "$(curl -fsSL https://raw.github.com/gist/1264701)" <mysqlPassword> |