!!!修改完配置后要重启服务器才有效
问题):
Cannot use output buffering in output buffering display handlers
解决:把Thinkphp/Command/common.php下trace方法中的$info =($label?$label.':':'').print_r($value,true);
注册掉之后会有详细错误信息
问题1:
Allowed memory size of 134217728 bytes exhausted
服务器内存不足的问题
解决:在php.ini文件下修改memory_limit ,默认为128M,可以适当增加内存空间,如256M
问题2:
Fatal error: Maximum execution time of 30 seconds exceeded
服务器响应时间限制为30秒
解决:在php.ini文件下修改max_execution_time,默认为30s,可适当增加时间,若改为0则响应时间无限制