./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
| #!/bin/sh | |
| # if the script is running from a terminal, show colors | |
| if [ -t 1 ]; then | |
| STYLE_END="\033[m" | |
| BLUE="\033[34m" | |
| GREEN="\033[32m" | |
| RED="\033[41m" | |
| YELLOW="\033[43m\033[34m" | |
| fi |
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
| // get all device ids uninstalled the application | |
| $feedback = new ApnsPHP_Feedback( | |
| ApnsPHP_Abstract::ENVIRONMENT_SANDBOX, | |
| 'path/to/push-ck-sandbox.pem' | |
| ); | |
| $feedback->setProviderCertificatePassphrase('MY-PASSPHRASE'); | |
| $feedback->connect(); | |
| $deviceTokens = $feedback->receive(); | |
| $feedback->disconnect(); | |
| foreach ($deviceTokens as $deviceId) { |
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 | |
| version="0.9.4 from 2010-09-13" | |
| # Always download the latest version here: http://www.eurosistems.ro/back-res | |
| # Thanks or questions: http://www.howtoforge.com/forums/showthread.php?t=41609 | |
| # | |
| # CHANGELOG: | |
| # ----------------------------------------------------------------------------- | |
| # version 0.9.4 - 2010-09-13 | |
| # -------------------------- | |
| # Small fix: - Corrected small bug replaced tar with $TAR in the recovery line |
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 | |
| ## Install ISPConfig3 on Ubuntu 14.04 64Bits | |
| ## Author: Nilton OS blog.linuxpro.com.br | |
| ## http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html | |
| ## http://www.howtoforge.com/perfect-server-ubuntu-14.04-apache2-php-mysql-pureftpd-bind-dovecot-ispconfig-3-p2 | |
| dpkg-reconfigure dash | |
| service apparmor stop |
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 | |
| ## Install ISPConfig3 on Ubuntu 14.04 64Bits | |
| ## Author: Nilton OS blog.linuxpro.com.br | |
| ## http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html | |
| ## http://www.howtoforge.com/perfect-server-ubuntu-14.04-apache2-php-mysql-pureftpd-bind-dovecot-ispconfig-3-p2 | |
| dpkg-reconfigure dash | |
| service apparmor stop |
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 | |
| # | |
| # Debian GNU/Linux Installation Script for LAMP + ISPConfig3 | |
| # Script written by Aris S Ripandi (riespandi@gmail.com) 15/01/2012 | |
| # | |
| # Referensi: | |
| # - http://www.howtoforge.com/how-to-run-your-own-name-server-with-ispconfig-3-and-fast-hosts | |
| # - http://www.howtoforge.com/perfect-server-debian-squeeze-with-bind-and-courier-ispconfig-3 | |
| # - http://www.howtoforge.com/installing-mydns-ng-and-mydnsconfig-on-debian-squeeze | |
| # - http://www.howtoforge.com/how-to-run-your-own-name-server-with-ispconfig-3-and-fast-hosts |
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
| /* | |
| * Your Stylesheet | |
| * | |
| * This stylesheet is loaded when Atom starts up and is reloaded automatically | |
| * when it is changed. | |
| * | |
| * If you are unfamiliar with LESS, you can read more about it here: | |
| * http://www.lesscss.org | |
| */ |
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
| [mysqld] | |
| datadir=/var/lib/mysql | |
| socket=/var/lib/mysql/mysql.sock | |
| user=mysql | |
| # Disabling symbolic-links is recommended to prevent assorted security risks | |
| symbolic-links=0 | |
| # The maximum amount of concurrent sessions the MySQL server will | |
| # allow. One of these connections will be reserved for a user with | |
| # SUPER privileges to allow the administrator to login even if the |
NewerOlder