报错:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at E:\phpweb\message\login.php:12) inE:\phpweb\message\login.php on line 44
Warning: Cannot modify header information - headers already sent by (output started at E:\phpweb\message\login.php:12) in E:\phpweb\message\login.php on line 46
解决方法:
原因一:在session_start(); 语句之前有其他的html代码
解决方法:把php代码放在html代码之前
原因二:session 保存路径问题或没有权限
解决方法:修改php.ini中的session.save_path = "E:/phpweb/php5/tmp",确保该路径有权限
原因三:以上都不行
解决方法:修改php.ini中的session.auto_start = 0 为 session.auto_start = 1