Skip to content

Instantly share code, notes, and snippets.

@zeloc
zeloc / change_user_pass.sql
Created August 16, 2018 08:14
Changes the user password in magento 2
SET @email='testspace@test.com', @passwd='Test@123456', @salt=MD5(RAND());
UPDATE customer_entity
SET password_hash = CONCAT(SHA2(CONCAT(@salt, @passwd), 256), ':', @salt, ':1')
WHERE email = @email;
@zeloc
zeloc / upload_download.sh
Created August 16, 2018 08:14
upload and download via scp
//Download From the server to your local
scp -P 2020 coxandcox@78.137.125.4:/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 coxandcox@78.137.125.1:/home/coxandcox/production/pub/media/
@zeloc
zeloc / mysqldump.sh
Created August 16, 2018 08:13
mysqldump command with host and gz
# 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
@zeloc
zeloc / order_notes.sql
Created August 16, 2018 08:11
sql to get all sales order notes in magento 2
select `order`.`increment_id` as `Sales Order`, DATE(`note`.`created_at`) as `Date`, TIME(`note`.`created_at`) as `Time`, `note`.`comment` as `Note`
FROM `sales_order` AS `order`
JOIN `sales_order_status_history` as `note`
ON `note`.`parent_id` = `order`.`entity_id`;
@zeloc
zeloc / ssh_config
Created March 14, 2015 13:32
example ssh config file used to create multiple host and assign different ssh keys
### default for all ##
Host *
ForwardAgent no
ForwardX11 no
ForwardX11Trusted yes
User nixcraft
Port 22
Protocol 2
ServerAliveInterval 60
ServerAliveCountMax 30
@zeloc
zeloc / 0_reuse_code.js
Created April 13, 2014 14:47
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console