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
#buddy starts in the working dir | |
SCANDIR=$(pwd) | |
wget http://www.rfxn.com/downloads/maldetect-current.tar.gz | |
tar -xzf maldetect-current.tar.gz | |
cd maldetect-1.6.4 | |
/bin/bash ./install.sh | |
#make a fake vi to just echo out the report | |
echo '#!/bin/bash' >/usr/bin/vi | |
echo 'echo $1' >>/usr/bin/vi | |
chmod +x /usr/bin/vi |
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
#!/usr/bin/env php | |
## steps | |
# | |
# fix where app:config:dump was run, adn value sin magento db is outof sync (so they ONLy exist in the dumped configs) | |
# | |
# Copy your app/etc/config.php (or app/etc/env.php) to bin folder | |
# delete from the app/etc/config.php (or env.php) file the values you want to re-import TO DB | |
# run bin/magento app:config:import (to process the changes you just made) | |
# run this script: ./bin/set-config.php --config config.php (or env.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
<?php | |
namespace ProxiBlue\Shell\Console\Command; | |
use Magento\Setup\Exception; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
use Symfony\Component\Console\Input\InputOption; |
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/src/Core/Http/Serialization/XmlObjectSerializer.php b/src/Core/Http/Serialization/XmlObjectSerializer.php | |
index 1c7d865..4a4a3cc 100644 | |
--- a/src/Core/Http/Serialization/XmlObjectSerializer.php | |
+++ b/src/Core/Http/Serialization/XmlObjectSerializer.php | |
@@ -83,9 +83,9 @@ class XmlObjectSerializer extends IEntitySerializer | |
private static function PhpObjFromXml($className, $xmlStr) | |
{ | |
$className = trim($className); | |
- if (class_exists($className, CoreConstants::USE_AUTOLOADER)) { | |
+ if (@class_exists($className, CoreConstants::USE_AUTOLOADER)) { |
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": { |
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
<?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
$('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 | |
$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
#!/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 |