14/12/2019How do you use bcrypt for hashing passwords in PHP?use password_hash() to create a bcrypt hash of any password: password_hash('yourPassword', PASSWORD_DEFAULT); use password_hash() to create a bcrypt hash of […]
14/09/2023How to remove X-Powered-By EasyEngine 4 (EE4)Step 1: Step 2: Edit file version.conf and remove add_header X-Powered-By “EasyEngine v4.6.6 Step 3: Restart docker
01/09/2019Lệnh docker căn bảnLệnh xem tất cả các container đang hoạt động docker ps Lệnh xem tất cả các container không hoạt động […]
09/12/2019Query mysql update home and siteurl table wp-option wordpressCâu lệnh SQL update url website wordpress SET SQL_SAFE_UPDATES = 0; UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl.com', 'http://www.newurl.com') WHERE […]
09/03/2020Automatically Set the WordPress Image Title, Alt-Text & Other MetaChèn vào file function.php /* Automatically set the image Title, Alt-Text, Caption & Description upon upload --------------------------------------------------------------------------------------*/ add_action( 'add_attachment', 'my_set_image_meta_upon_image_upload' […]
17/06/2023Lỗi Export mysql “ERROR 1045 (28000): Access denied for user”If you’re able to connect to the database using mysql, but you get an error for mysqldump, then the problem […]