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/bash | |
| sudo apt-get update | |
| sudo apt-get install g++ make binutils autoconf automake autotools-dev libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev -y | |
| git clone https://github.com/nghttp2/nghttp2.git && cd nghttp2 | |
| autoreconf -i | |
| automake | |
| autoconf | |
| ./configure --enable-apps | |
| make |
| Get Ready for Magento Certified Developer Exam. Magento Codepool | |
| http://blog.belvg.com/magento-certification-magento-codepool.html | |
| Get Ready for Magento Certified Developer Exam. Magento Module Structure. | |
| http://blog.belvg.com/magento-certification-module-structure.html | |
| Get Ready for Magento Certified Developer Exam. The Main Magento Design Areas and More… | |
| http://blog.belvg.com/get-ready-for-magento-certified-developer-exam-the-main-magento-design-areas-and-more.html | |
| Get Ready for Magento Certified Developer Exam. Class Naming Conventions and Their Relationship with the Autoloader |
| function simulateSoapRequest($request, $location, $action, $version) | |
| { | |
| $client = new Zend_Http_Client($location); | |
| $adapter = new Zend_Http_Client_Adapter_Curl(); | |
| $client->setAdapter($adapter); | |
| $adapter->setCurlOption(CURLOPT_TIMEOUT, $this->_timeout); | |
| $client->setMethod(Zend_Http_Client::POST); | |
| $client->setHeaders('Content-Type', $version == 2 ? 'application/soap+xml' : 'text/xml'); | |
| $client->setHeaders('SOAPAction', $action); |
| # | |
| # @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 |