Home>Article>Backend Development> Where is the linux php error log?
Linux php error log is generally located at "./var/log/nginx/error.log". The specific search method is to execute the command "find . -name error.log" to search.
Recommended: "PHP Video Tutorial"
linux nginx php error log
It is recommended to switch to the root directory
cd / find . -name error.log
It will mostly be at ./var/log/nginx/error.log location, you can find it specifically
The above is the detailed content of Where is the linux php error log?. For more information, please follow other related articles on the PHP Chinese website!