当我在一段时间后(比如几个小时)返回我的网站时,出于某种原因,我收到了 3 个 PHP 警告,就像屏幕截图中一样。当我登录/注销时,警告消失了。
[phpBB 调试] PHP 警告:在文件 [ROOT]/includes/session.php 的第 1042 行:无法修改标头信息 - 标头已发送(输出开始于 /home/content/60/11957760/html/runicparadise/index.html) php:22) [phpBB Debug] PHP 警告:在文件 [ROOT]/includes/session.php 的第 1042 行:无法修改标头信息 - 标头已发送(输出开始于 /home/content/60/11957760/html/ runicparadise/index.php:22) [phpBB 调试] PHP 警告:在文件 [ROOT]/includes/session.php 的第 1042 行:无法修改标头信息 - 标头已发送(输出开始于 /home/content/60/ 11957760/html/runicparadise/index.php:22)
这是它所指的第 22 行的 php 代码......我猜另一个引用似乎在我的主机服务器上的某个地方?
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
?>