Pear for 1.4, mage for 1.5. File downloaded into /downloader/.cache/community/
./pear download magento-community/Shipping_Agent
./mage download community Shipping_Agent
| # cookbooks/chef/attributes/chef.rb | |
| set_unless[:chef][:log_location] = "STDOUT" | |
| set_unless[:chef][:log_level] = "info" | |
| set_unless[:chef][:url_type] = "http" | |
| set_unless[:chef][:server_fqdn] = "your-chef-server" | |
| set_unless[:chef][:server_port] = "4000" | |
| set_unless[:chef][:validation_client_name] = "chef-validator" | |
| set_unless[:chef][:cache_path] = "/var/cache/chef" |
| { | |
| "webapp": { | |
| "web_server": "apache2", | |
| "vhosts": [ | |
| { "id": "production", | |
| "host_name": "main.example.com", | |
| "non_ssl_server": true, | |
| "www_redirect": false, | |
| "ssl_server": true, | |
| "ssl_www_redirect": false |
Magento’s checkout throughput can increase to at least 8 times its current capacity and up to 26 times more in ideal conditions.
| ; Enable Zend OPcache extension module | |
| zend_extension=opcache.so | |
| ; Determines if Zend OPCache is enabled | |
| opcache.enable=1 | |
| ; Determines if Zend OPCache is enabled for the CLI version of PHP | |
| ;opcache.enable_cli=0 | |
| ; The OPcache shared memory storage size. |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 | |
| (http://www.wtfpl.net/about/) | |
| Copyright (C) 2015 Mario Mendes (@hyprstack) | |
| Copyright (C) 2015 Ivan Fraixedes (https://ivan.fraixed.es) | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. |
| { | |
| "AWSTemplateFormatVersion" : "2010-09-09", | |
| "Description" : "PHP Blue-Green Deployment environment template", | |
| "Parameters" : { | |
| "KeyName" : { | |
| "Description" : "Name of an existing EC2 KeyPair to enable SSH access to the instances", | |
| "Type" : "String", | |
| "MinLength" : "1", | |
| "MaxLength" : "64", | |
| "AllowedPattern" : "[-_ a-zA-Z0-9]*", |
| ; Output links compatible with the PHPStorm Remote Call plugin running on the host. | |
| ; source: https://github.com/computerminds/parrot/pull/20/files | |
| xdebug.file_link_format="javascript:var rq = new XMLHttpRequest(); rq.open(\"GET\", \"http://localhost:8091?message=%f:%l\", true); rq.send(null);" | |
| #!/bin/bash | |
| # | |
| # Copies certain kinds of known files and directories from a given Jenkins master directory | |
| # into a git repo, removing any old ones, adds 'em, commits 'em, pushes 'em. | |
| # | |
| set -ex | |
| if [ $# -ne 2 ]; then | |
| echo usage: $0 root_dir jenkins_master |