Home > Topics > IIS > body text

iis running php500 error

王林
Release: 2019-10-19 18:05:40
Original
4324 people have browsed it

iis running php500 error

1. Modify php.ini

error_reporting = E_ALL & ~E_NOTICE
register_globals = On
Copy after login

This problem actually mainly lies in the parameters of error_reporting. The author below register_globals in php.ini It was not found (the author is using php7), and there is no problem if I don’t add it.

2. Add the following code to the head of the php file

ini_set("error_reporting","E_ALL & ~E_NOTICE");
Copy after login

This solution is suitable for situations where you do not have read and write permissions for php.ini or do not want to configure ini. It can also be used Solve the problem.

Recommended tutorial: IIS tutorial

The above is the detailed content of iis running php500 error. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!