Skip to content

Instantly share code, notes, and snippets.

@devthue
Last active October 21, 2016 15:34
Show Gist options
  • Save devthue/2e6cc697232b017d09b82c90ca2e551c to your computer and use it in GitHub Desktop.
Save devthue/2e6cc697232b017d09b82c90ca2e551c to your computer and use it in GitHub Desktop.
Debug PHP
  • Nếu bị lỗi 404: Sai đường dẫn

  • 500 : Code PHP bị sai lúc này bật log lên xem

  • Sử dụng die('abcd'); trong file index.php

  • Sử dụng hàm hiển thị lỗi trong index.php :

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
  • Xem log NGINX
tail -f /var/log/nginx/error.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment