10/12/2019mysql import database teminalmysql -u[database_user] -p[database_pass] [database_name] < [name_file].sql
04/08/2020Stateless là gì? Stateful là gì?Stateless Trong lập trình web, chúng ta có sự tương tác giữa client với server. Phần mềm gồm 2 thành […]
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 […]
19/06/2021Disable quyền ghi file wordpressdefine( 'DISALLOW_FILE_EDIT', true ); define( 'DISALLOW_FILE_MODS', true );
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 {} \;