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
Line 54, replace "$di" for "$dir" |
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
-- 10% | |
UPDATE wp_postmeta | |
SET meta_value = ROUND(meta_value * 1.10, 2) | |
WHERE meta_key = '_price'; | |
UPDATE wp_postmeta | |
SET meta_value = ROUND(meta_value * 1.10, 2) | |
WHERE meta_key = '_regular_price'; | |
UPDATE wp_postmeta |
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
CREATE USER 'newUser'@'localhost' IDENTIFIED BY 'aBigPasswordForMyDatabaseAccess'; | |
GRANT SELECT, INSERT, CREATE, UPDATE, DELETE, ALTER, DROP, INDEX ON databaseName.* TO 'newUser'@'localhost'; |