Home > php教程 > php手册 > 发现ThinkPHP不报错,显示空白页面问题解决办法

发现ThinkPHP不报错,显示空白页面问题解决办法

WBOY
Release: 2016-06-07 11:34:13
Original
3604 people have browsed it

我是ThinkPHP新手,按照手册配置后,一开始时程序出错会报错,后来不报错了!几经查找资料没有结果,几番折腾发现了问题的所在,下面就说说我的解决办法。
第一次发贴,希望名位T友多多指点,互相交流。
入口代码开发期间基本会有下面代码<?php <br /> define('APP_PATH','./Application/');<br> // define('APP_DEBUG', TRUE);<br> include './ThinkPHP/ThinkPHP.php';<br> ?>当程序里有错时,显示的竟然是个空白页面,大家第一反应是:怎么啦?
网上的解决办法有很多,有些知识是PHP新手都必需掌握的方法。
==============================================第一行加上error_reporting(E_ALL)php.ini找到display_errors = Off 修改为 display_errors = On
这个方法基础的不能再基础了,但对于ThinkPHP空白页面的问题,鞭长莫及。
==============================================在配置文件里加上如下代码<br> 'SHOW_PAGE_TRACE'=>true这个方法很好,可以显示ThinkPHP程序运行过程中所有的信息,但是对于空白页面来说,也是无能为力。
==============================================
最后,我的解决办法是'TMPL_EXCEPTION_FILE'   =>  'Public:Exception',// 异常页面的模板文件我是在配置是,设置了异常页面的模板文件,而这个页面代码文件里的代码并没有写完整,造成PHP错误无法正常显示,所以显示个空白页面。

AD:真正免费,域名+虚机+企业邮箱=0元

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template