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 bash | |
cd /var/www/vhosts/partyshowroom/production/htdocs/ | |
echo 'Turning off static signing' | |
mysql -uroot -proot -Dparty_local<<<"UPDATE party_local.core_config_data SET value=0 WHERE path='dev/static/sign'" | |
composer install | |
echo 'Clearing magento cache...' | |
rm -rf /var/www/vhosts/partyshowroom/production/htdocs/var/cache/* | |
echo 'Clearing page cache...' | |
rm -rf /var/www/vhosts/partyshowroom/production/htdocs/var/page_cache/* | |
echo 'Setting developer mode' |
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 | |
use Varien_Event_Observer as Event; | |
class Test_PriceFilter_Model_Observer | |
{ | |
public function catalogControllerCategoryInitAfter(Event $event) | |
{ | |
//code goes here |
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 Haakym\UKBankHoliday; | |
use JsonSerializable; | |
class UKBankHoliday implements JsonSerializable { | |
protected $year; | |
protected $newYears; | |
protected $goodFriday; | |
protected $easterMonday; | |
protected $mayDay; | |
protected $whitSun; |
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 | |
//ini_set('memory_limit','10G'); | |
require_once('abstract.php'); | |
class Bundle_Cart_Item_Option_Items extends Mage_Shell_Abstract | |
{ | |
/** | |
* Entry point | |
*/ | |
public function run() |
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 | |
# Simple script to enable or disable xdebug profiling | |
case $1 in | |
on) | |
sudo sed -i 's/;//g' /etc/php.d/xdebug.ini | |
sudo /etc/init.d/php-fpm restart | |
;; | |
off) | |
sudo sed -i 's/^/;/g' /etc/php.d/xdebug.ini |
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
2018-05-10T07:56:38+00:00 INFO (6): Array | |
( | |
[attribute_id] => Array | |
( | |
[SCHEMA_NAME] => | |
[TABLE_NAME] => eav_attribute | |
[COLUMN_NAME] => attribute_id | |
[COLUMN_POSITION] => 1 | |
[DATA_TYPE] => smallint | |
[DEFAULT] => |
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
SET @email='[email protected]', @passwd='Test@123456', @salt=MD5(RAND()); | |
UPDATE customer_entity | |
SET password_hash = CONCAT(SHA2(CONCAT(@salt, @passwd), 256), ':', @salt, ':1') | |
WHERE email = @email; |
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
//Download From the server to your local | |
scp -P 2020 [email protected]:/home/coxandcox/stg.temp.db.sql.gz /Users/doug/Downloads/ | |
//Upload From your machine to the server | |
scp -P 2020 /Users/doug/Downloads/rugs-buying-guide.pdf [email protected]:/home/coxandcox/production/pub/media/ |
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
# Taking a mysqldump with single transation: | |
# standard | |
mysqldump --single-transaction -u root -proot bettys_local > bak_060618.sql.gz | |
# with host | |
mysqldump --single-transaction -h 127.0.0.1 -u root -proot bettys_local > bak_060618_1.sql.gz | |
# with gz and host | |
mysqldump --single-transaction -h 127.0.0.1 -u root -proot bettys_local | gzip > bak_060618_11.sql.gz |