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
| #!/bin/sh | |
| # | |
| # redis - this script starts and stops the redis-server daemon | |
| # | |
| # chkconfig: - 85 15 | |
| # description: Redis is a persistent key-value database | |
| # processname: redis-server | |
| # config: /etc/redis/redis.conf | |
| # config: /etc/sysconfig/redis | |
| # pidfile: /var/run/redis.pid |
| SET @entityid = '3'; | |
| SELECT ea.attribute_id, ea.attribute_code, eav.value AS 'value', 'varchar' AS 'type' | |
| FROM catalog_category_entity e | |
| JOIN catalog_category_entity_varchar eav | |
| ON e.entity_id = eav.entity_id | |
| JOIN eav_attribute ea | |
| ON eav.attribute_id = ea.attribute_id | |
| WHERE e.entity_id = @entityid | |
| UNION |
| #!/usr/bin/perl -w | |
| # | |
| ## Copyright (C) 2011 Colin Mollenhour <http://colin.mollenhour.com/> | |
| ## | |
| ## This program is free software; you can redistribute it and/or | |
| ## modify it under the terms of the GNU General Public License | |
| ## as published by the Free Software Foundation; version 2 dated June, | |
| ## 1991. | |
| ## |
| # | |
| # @author Jonathon byrd | |
| # | |
| ############################################################ | |
| # first things first, set your iptables for a web server. If you jack these | |
| # up you don't want to have to re-install your os after doing much more. | |
| # @see http://www.thegeekstuff.com/2011/06/iptables-rules-examples/ | |
| # and | |
| # @see https://help.ubuntu.com/community/IptablesHowTo |
| #!/bin/sh | |
| # http://vm-192-168-11-21.shengyun.grandcloud.cn/topics/2437 | |
| # redis - this script starts and stops the redis-server daemon | |
| # | |
| # chkconfig: 2345 90 10 | |
| # description: Redis is a persistent key-value database | |
| # processname: redis-server | |
| # config: /etc/redis.conf | |
| # config: /etc/sysconfig/redis | |
| # pidfile: /var/run/redis.pid |
| <frontend> | |
| <events> | |
| <!-- logs --> | |
| <controller_action_predispatch> | |
| <observers><log><type>disabled</type></log></observers> | |
| </controller_action_predispatch> | |
| <controller_action_postdispatch> | |
| <observers><log><type>disabled</type></log></observers> | |
| </controller_action_postdispatch> | |
| <customer_login> |
| #!/bin/bash | |
| # USAGE | |
| # Install opendkim | |
| # List all your domains in file /etc/opendkim/TrustedHosts, one per line | |
| CHOWN="$(which chown)" | |
| MKDIR="$(which mkdir)" | |
| REMOVE="$(which rm)" | |
| ECHO="$(which echo)" | |
| COPY="$(which cp)" |