Home  >  Article  >  Backend Development  >  Cafe 24 Hosting PHP error message output, 24php_PHP教程

Cafe 24 Hosting PHP error message output, 24php_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:48:111286browse

Cafe24 hosting php error message output,24php

[Problem]

Recently, when working with PHP at Cafe 24 Hosting,
no error message appears on the screen, making debugging very difficult

[Solution]

Add below to the .htaccess content.
======================================
php_value error_reporting 22527
php_flag display_errors on
==================================== ==

1. Add
ini_set("display_errors", 1);
error_reporting(E_ALL ^ ​​E_NOTICE);

to the included library.

2. Using set_error_handler class published on the net

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1024649.htmlTechArticleCafe24 Hosting PHP error message output,24php [Problem] Recently, when working with PHP at Cafe24 Hosting, an error message appears on the screen. does not appear, making it very difficult to debug...
Statement:
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