session Cannot send session cache limiter 错误提示
程序员文章站
2022-05-20 21:09:09
...
session cannot send session cache limiter 错误提示
开始时经常会碰到如下提示
warning: session_start() [function.session-start]: cannot send session cache limiter - headers already sent (output started at e:php教程www.bKjia.c0madmin.php:1) in e:phpwww.bKjia.c0mlogolistadminlogo.php on line 2
这是提供session前面己经有输出了,我们只要把session_start()放在最前面,同时最了为避免出错提供可以在前面加@,如@session_start();这样就可以了。
同时也可以在php.ini中修改session.auto_start = 0 为 session.auto_start = 1
就可以了。
推荐阅读
-
解决php中Cannot send session cache limiter 的问题的方法
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法
-
php使用session提示Cannot send session cache
-
php使用session提示Cannot send session cache
-
php Cannot modify header information 跟 Cannot send session cache limiter
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法_php技巧
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法_php技巧
-
如何解决"Cannot send session cache limiter – headers already sent "错误
-
解决php中Cannot send session cache limiter 的问题的方法_php技巧
-
session Cannot send session cache limiter 错误提示