警告:session_start():无法发送会话cookie - 已经在/home/test/www/api/index.php中发送的输出(/home/test/www/api/index.php:1上的输出)在第3行
我在这里找不到问题,因为在<?php
之前没有空格,session_start();
是第一个被调用的空格:
的index.php:
<?php
session_start();
// more code here
不要认为这里应该有问题,但以防万一:
/ api中的.htaccess :
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
在流浪的开发环境中运行它我们没有遇到任何问题,但是第二次我们开始在使用Apache 2.2和PHP 5.5的CentOS cPanel环境中运行它时出现了这个问题。 我们还有一些其他问题似乎是cPanel的怪癖,但这个我无法弄清楚。
任何人都知道可能出现的问题,我们如何调试此问题或如何找到解决方案?