PHP program access report 500 error handling plan
We have learned so much about PHP, but I don’t know if you have fully mastered the syntax errors of PHP programs. Yes, if not, then follow this article to continue learning
PHP program syntax error caused
Scenario 1: Our project is set up with alarm monitoring (scheduled access to a fixed link on the website every 10 minutes). There was a time when we would receive emails reporting 500 errors two or three times a day, but when I accessed it manually again, Access is normal...
This should be the most common error, and syntax errors can also reappear quickly. As long as the error message is exposed, the problem can be solved immediately.
If it is in a local or test environment, this is usually how we handle it. Just set the output error message in the program entrance:
//error_reporting设置应该报告的错误,下面表示除了 E_NOTICE,报告其他所有错误 error_reporting(E_ALL ^ E_NOTICE); //输出错误 ini_set('display_errors', 1);
But in an online environment, because all users are using it, it is impossible. What should we do if we are allowed to make such blatant printing errors? You can set the error output to the log file in the program entry file. The specific code is as follows:
error_reporting(E_ALL ^ E_NOTICE); //禁止把错误输出到页面 ini_set('display_errors', 0); //设置错误信息输出到文件 ini_set('log_errors', 1); //指定错误日志文件名 $error_dir = '/logs/err/'; $error_file = $error_dir . date('Ymd').'.log'; //目录不存在就创建 if (!is_dir($error_dir)){ mkdir($error_dir, 0777, true); } //文件不存在就创建之 if(!file_exists($error_file)){ $fp = fopen($error_file, 'w+'); if($fp){ fclose($fp); } } //设置错误输出文件 ini_set("error_log", $error_file); //程序正常执行逻辑......
The problem in scenario 1 just mentioned was discovered later when we output it to the log in the same way as above. It was because mysql The connection was disconnected abnormally and the program continued to execute (it was normal when connecting to mysql, but an error was reported when the specific query method was called. Remember that it seemed to be a fatal error when the method mysqli_real_escape_string()
was used), and finally everything went smoothly. Fixed.
The disk is full causing
# Scenario 2: Once, a colleague said that the picture could not be uploaded and kept reporting error 500. It was working fine before, but I couldn't find out what the problem was. Because I was responsible for the development of that area at the time, so I came to see me. Various checks found no problem. Other pages were accessible normally. I deleted all the code on this page. I still get an error after uploading again. After searching for a long time, I finally found out that the disk is full o(╥﹏╥)o...
The 500 error message is caused by insufficient disk space and insufficient space to read and write data. It is uncommon and difficult to detect in time. Usually when encountering the 500 error, the first thing that comes to mind is a program error. In fact, it may also be due to insufficient disk space. If you find any problems in the program, you can check whether it is due to insufficient disk space~ df -h
Check the disk space usage
means that the server encountered an error and was unable to complete the request (i.e., an internal server error) , but the specific problem must be analyzed in detail
Recommended study: "PHP Video Tutorial》
The above is the detailed content of PHP program access report 500 error handling plan. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
