This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected $_paramsToTrack = array("offer_followup"); | |
/** | |
* Capture any listened for parameters, and inject them into the session | |
* under a variable called : ProductOfferUrlParams | |
* | |
* You must clear this variable with a call to | |
* | |
* Mage::getSingleton('customer/session')->unsProductOfferUrlParams(); | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
n98-magerun --scope-id=0 config:set web/unsecure/base_url {{base_url}} | |
n98-magerun --scope-id=0 config:set web/secure/base_url {{base_url}} | |
n98-magerun --scope-id=1 --scope="stores" config:set web/unsecure/base_url {{base_url}} | |
n98-magerun --scope-id=1 --scope="stores" config:set web/secure/base_url {{base_url}} | |
n98-magerun --scope-id=1 --scope="stores" config:set web/unsecure/base_skin_url {{base_url}}/skin | |
n98-magerun --scope-id=1 --scope="stores" config:set web/secure/base_skin_url {{base_url}}/skin | |
n98-magerun --scope-id=0 config:set web/unsecure/base_skin_url {{base_url}}/skin | |
n98-magerun --scope-id=0 config:set web/secure/base_skin_url {{base_url}}/skin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Magento | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Academic Free License (AFL 3.0) | |
* that is bundled with this package in the file LICENSE_AFL.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://opensource.org/licenses/afl-3.0.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/app/design/frontend/default/theme567/template/sendfriend/send.phtml b/app/design/frontend/default/theme567/template/sendfriend/send.phtml | |
index 14432118..be6096dc 100644 | |
--- a/app/design/frontend/default/theme567/template/sendfriend/send.phtml | |
+++ b/app/design/frontend/default/theme567/template/sendfriend/send.phtml | |
@@ -32,8 +32,13 @@ | |
?> | |
<script type="text/javascript"> | |
//<![CDATA[ | |
- i=0; | |
- var recipCount = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
STATE=$1 | |
echo $STATE | |
curl -X PUT -H "Content-Type: application/json" -d '{"enabled":'${STATE}'}' https://home.sensibo.com/api/v2/pods/DEVICE_ID/smartmode/?apiKey=API KEY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$fp = fopen('/tmp/temp_monitor.csv', 'a'); | |
$curl = curl_init('https://home.sensibo.com/api/v2/pods/jFFZuNq6/measurements?apiKey=MxeORFfanBUJnCbd3HLmssEYJF2WbO'); | |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); | |
$curl_response = curl_exec($curl); | |
if ($curl_response === false) { | |
$info = curl_getinfo($curl); | |
curl_close($curl); | |
die('error occurred during curl exec. Additional info: ' . var_export($info)); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('form input:text').each(function(index, elem) { | |
var eId = $(elem).attr('id'); | |
var label = null; | |
if (eId && (label = $(elem).parents('form').find('label[for='+eId.replace(':', '\\:')+']')).length === 1) { | |
$(elem).attr('placeholder', $(label).html().replace(/<\/?[^>]+(>|$)/g, "")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Just a rough script to parse the exception log, find all entries that match the Declined string, and group | |
* them by day. | |
* This effectively shows a major increase in a sites number of declind transactions, for which scripting was the cause | |
* Setup of reCapctha at checkout stopped this issue | |
* | |
* Log example: | |
* 2017-06-22T15:17:06+00:00 ERR (3): | |
* exception 'Mage_Core_Exception' with message 'Declined: 15005-This transaction cannot be processed.' in public_html/app/Mage.php:603 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace Enjo\Pure\Ui\DataProvider\Product\Form\Modifier; | |
use Magento\Ui\Component\Container; | |
use Magento\Ui\Component\DynamicRows; | |
use Magento\Ui\Component\Form\Field; | |
use Magento\Ui\Component\Form\Fieldset; | |
use Magento\Ui\Component\Form\Element\Textarea; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"server": { | |
"host": "localhost", | |
"port": 8080, | |
"searchEngine": "elasticsearch" | |
}, | |
"orders": { | |
"useServerQueue": false | |
}, | |
"catalog": { |