Sau khi cài php selecter version trên vesta cp và bạn thử vào phần upload của wordpress xảy ra lỗi
1 2 3 4 |
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at info@gate.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. |
Vậy thì bạn đã tìm được cách để fix rồi đó
Khi bạn cài nhiều php version thì mỗi version sẽ có một file php.ini, vậy nên bạn cần tìm chỗ để chứa nó. Để tìm nó bạn tạo một file
phpinfo.php với nội dung
1 2 |
<?php phpinfo(); |
Rồi tải nó lên folder chủa domain bạn đang gặp lỗi tìm đến dòng Loaded Configuration File sẽ thấy đường dẫn tới file php.ini và mình tìm được /etc/opt/remi/php74/php.ini
Chỉnh với các thông số dưới:
1 2 3 4 5 |
max_execution_time: 600 max_input_vars: 100000 memory_limit: 384 post_max_size: 135 upload_max_filesize: 128 |
Khởi động lại httpd
service httpd restart
Đường dẫn của nó /etc/httpd/conf.d/fcgid.conf
Thêm vào cuối file 2 dòng code sau:
1 2 |
FcgidConnectTimeout 20 MaxRequestLen 20000000 |
Khởi động lại httpd
service httpd restart
Xong rồi đó
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress