Re: [問題] 想請問有關php和session的錯誤問題???

看板Web_Design作者 (lastoct)時間19年前 (2005/04/17 19:06), 編輯推噓3(305)
留言8則, 3人參與, 最新討論串1/1
※ 引述《vivat (唷)》之銘言: : Warning: session_start(): Cannot send session cache limiter - : headers already sent : 不知道為什麼 執行session都會出現這行警告訊息 : 我有爬過文,也設好session_save_path : 可是還是都會出現這行訊息,session功能也能使用 : 請問這是什麼問題呢?????? : 謝謝 看訊息就是arzbar所說的問題,使用他的解決方案即可。 題外話: 官方手冊是這麼說的: Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. It is a very common e rror to read code with include(), or require(), functions, or another file acce ss function, and have spaces or empty lines that are output before header() is called. The same problem exists when using a single PHP/HTML file. 大意是: 1.不可以有html tag 如<html><?php.. 2.不可以有空白的行 如 <?php some code ?> <----空白行是不允許 <?php 3.不要加在include或require之前 php.ini可以設定sessoin_auto_start = 1(預設為0, disabled) 不過缺點是你的session就不能存物件了 如果還是不行,先丟一些code上來,還有平台,不然有點難猜測情況 如果解決了或發現什麼心得,最好可以回一下,幫助後面的同好。 也瞭解此方式是否work。 希望不要打了就跑了 XD -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 211.72.111.115

211.72.111.115 04/17, , 1F
3.include/requrie不可在header()之前
211.72.111.115 04/17, 1F

218.162.203.63 04/17, , 2F
還可以用一個方法試試看 所有程式一開頭放
218.162.203.63 04/17, 2F

218.162.203.63 04/17, , 3F
ob_start(); 結尾放ob_end_flush();
218.162.203.63 04/17, 3F

218.162.203.63 04/17, , 4F
session_start(); 也要放在include/require之前喔
218.162.203.63 04/17, 4F

218.162.203.63 04/17, , 5F
題外話:可以試著了解"標頭(header)",就可以知道
218.162.203.63 04/17, 5F

218.162.203.63 04/17, , 6F
為什麼這些資料得放在最上頭了...
218.162.203.63 04/17, 6F

140.115.90.50 04/20, , 7F
感謝各位解答,好像是因為空白行的關係
140.115.90.50 04/20, 7F

140.115.90.50 04/20, , 8F
不過後來不知道為什麼 就莫名其妙好了 我也不懂 XD
140.115.90.50 04/20, 8F
文章代碼(AID): #12OaD9s2 (Web_Design)
文章代碼(AID): #12OaD9s2 (Web_Design)