我遇到了问题。所以请不要提及其他解决方案。到目前为止,我发现许多解决方案像白色空间
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /homepages/27/d595312696/htdocs/application/config/database.php:1)
Filename: libraries/Session.php
Line Number: 689
但我没有发现任何错误。请具体帮忙。我已经搜索了重复的问题,但无法获得任何解决方案。 它适用于本地服务器。但在上传它在线服务器后我发现了这个问题
答案 0 :(得分:0)
在您向页面输出一些文本之前,您可以在某处调用header()
。应在任何输出之前指定所有标头。
来自http://php.net/manual/en/function.header.php
<html>
<?php
/* This will give an error. Note the output
* above, which is before the header() call */
header('Location: http://www.example.com/');
exit;
?>