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
| SELECT | |
| sr.`name` as rule_name, | |
| count(*) as total_orders, | |
| SUM(sfo.`total_paid`) as revenue, | |
| sr.`rule_id`, | |
| sfo.`applied_rule_ids` | |
| FROM | |
| `sales_flat_order` sfo, | |
| `salesrule` sr | |
| WHERE |
| rsync \ | |
| --verbose \ | |
| --progress \ | |
| --stats \ | |
| --compress \ | |
| --rsh=/usr/bin/ssh \ | |
| --recursive \ | |
| --times \ | |
| --perms \ | |
| --links \ |
| /** | |
| * Set developer mode and display_errors based on subdomain | |
| */ | |
| $staging_subdomains = array( | |
| 's1', | |
| 's2', | |
| 's3', | |
| 's4', | |
| 's5', | |
| 'mac', |
| <?php | |
| /** | |
| * how best to turn on errors for staging subdomains | |
| * | |
| * as this is in the index.php, performance is important, | |
| * although technically the page will be cached | |
| */ | |
| // 1. preg_match | |
| if (preg_match('/^s1\.|^s2\.|^s3\.|^s4\.|^s5\.|^mac\.|^local\.|^mac-upgrade\./', $_SERVER['HTTP_HOST'])) { |
| ### IE users need a little help (Magento+IE9=bad times) ### | |
| <IfModule mod_setenvif.c> | |
| <IfModule mod_headers.c> | |
| BrowserMatch MSIE ie | |
| Header set X-UA-Compatible "IE=EmulateIE8,chrome=1" env=ie | |
| </IfModule> | |
| </IfModule> | |
| <IfModule mod_headers.c> | |
| # Because X-UA-Compatible isn't sent to non-IE (to save header bytes), | |
| # We need to inform proxies that content changes based on UA |
| # http://thenerdary.net/articles/entry/htaccess-environments | |
| RewriteEngine On | |
| RewriteBase / | |
| ### SET UP ENVIORNMENTS ### | |
| # Default to master | |
| RewriteRule .* - [E=ENVIRONMENT:master] |
| // Bind a custom event to the lightbox that can be triggered when it needs to be dismissed: | |
| $('.lightbox').bind('dismiss', function() { | |
| // code to dismiss lightbox | |
| }); | |
| // Then just trigger that event when escape it pressed: | |
| $(document).bind('keyup', function(e) { | |
| if(e.keyCode == 27) { |
| if (window.location !== window.parent.location) { | |
| document.documentElement.className += ' iframe'; | |
| } |
| <!doctype html> | |
| <html lang="en" class="no-js"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
| <script src="tabs.js"></script> | |
| </head> | |
| <body> | |
| <div class="tab-container"> |