Trong quá trình sử dụng VPS, các bạn có thể sẽ gặp những lỗi liên quan đến đọc/ghi dữ liệu khi:
To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.
Nguyên nhân xảy ra lỗi ở đây là do webserver (nginx hoặc apache) chưa được phân quyền đọc/ghi/xóa/sửa dữ liệu.
Hãy di chuyển đển folder chứa code (ví dụ /home/domain.com/public_html/ ):
cd /home/domain.com/public_html/
Rồi chạy một trong số các lệnh tương ứng bên dưới là được:
Với Nginx trên CentOS
chown -R nginx:nginx /home/domain.com/public_html/
Với Apache trên CentOS
chown -R apache:apache /home/domain.com/public_html/
Với Nginx trên Ubuntu
chown -R www-data:www-data /home/domain.com/public_html/
Với Apache trên Ubuntu
chown -R www-data:www-data /home/domain.com/public_html/
Chúc bạn thành công!