10/12/2019mysql import database teminalmysql -u[database_user] -p[database_pass] [database_name] < [name_file].sql
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 […]
15/06/2020Giải mã cảm xúc để sống hạnh phúc hơnSân hận là một đóa hoa đẹp, công nhận khi đi được 1/3 chặng đường, tôi mới hiểu được rằng […]
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
30/03/2020How to change all files and folders permissions of a directory to 644/755find . -type d -exec chmod 0755 {} \; find . -type f -exec chmod 0644 {} \;