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
param ( | |
[Parameter(Mandatory=$true)string]$directoryPath, | |
[Parameter(Mandatory=$true)string]$iisAppName, | |
[string]$iisAppPoolName = "Default", | |
[string]$iisAppPoolDotNetVersion = "v4.5" | |
) | |
Import-Module WebAdministration | |
#navigate to the app pools root |
# USAGE: cleanup.sh input-file.sql output-file.sql "www.production-site.com" "dev.production-site.com" | |
awk '!/INSERT INTO `customer_(entity|address)/' $1 \ | |
| awk '!/INSERT INTO `log_/' \ | |
| awk '!/INSERT INTO `m2epro_/' \ | |
| awk '!/INSERT INTO `sales_/' \ | |
| awk '!/INSERT INTO `report_viewed_/' \ | |
| awk '!/INSERT INTO `load_/' \ | |
| sed "s/$3/$4/; s/http:\/\/$3/http:\/\/$4/; s/https:\/\/$3/http:\/\/$4/" \ | |
> $2 |
<?php | |
/** | |
* SwiftOtter_Base 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, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* SwiftOtter_Base is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
#!/usr/bin/env bash | |
# Install dependencies | |
yum update -y | |
yum install -y gcc apr-devel apr-util-devel openssl-devel pcre-devel libxml2-devel libcurl-devel | |
mkdir setup && cd setup | |
wget http://mirrors.besplatnyeprogrammy.ru/apache//httpd/httpd-2.4.4.tar.gz | |
tar -xvf httpd-2.4.4.tar.gz |
<?php | |
function getMap($input, $function) { | |
$numbers = getNumbers(); | |
$array = array_filter($numbers, $function); | |
return array_combine($array, array_fill(0, count($array), $input)); | |
} | |
function getNumbers() | |
{ |
<reference name="before_body_end"> | |
<block type="core/text" name="sharpspring.form"> | |
<action method="setText"> | |
<text><![CDATA[<!-- SharpSpring Form for Contact Us --> | |
<script>// <![CDATA[ | |
var ss_form = {'account': 'MzIxNgQA', 'formID': 'S022NLG0sDDSNTY2NtU1sUxK1bVISzHRNbQwS000MTFJS0y2AAA'}; | |
ss_form.domain = 'app-1DN7CXM.sharpspring.com'; | |
// ss_form.hidden = {'Company': 'Anon'}; // Modify this for sending hidden variables, or overriding values | |
// ]]></script> | |
<script type="text/javascript" src="https://koi-1DN7CXM.sharpspring.com/client/form.js?ver=1.1.1"></script>]]></text> |
<?php | |
/** @var Mage_Catalog_Model_Resource_Setup $installer **/ | |
$installer = $this; | |
if (!$installer->getAttributeId(Mage_Catalog_Model_Product::ENTITY, 'attribute_name')) { | |
$installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'attribute_name', array( // TABLE.COLUMN: DESCRIPTION: | |
'label' => 'Label', // eav_attribute.frontend_label admin input label | |
'group' => 'General', // (not a column) tab in product edit screen | |
'sort_order' => 0, // eav_entity_attribute.sort_order sort order in group |