2018年7月12日 星期四

安裝XAMPP後的一些小問題

狀況

include不到同路徑檔案的函數

解決辦法

include_path=D:\XAMPP\php\PEAR

改成

;include_path=D:\XAMPP\php\PEAR

讓他失效



狀況

用 <? ?> 短標籤無法執行php程式


解決辦法

修改 php.ini

short_open_tag=Off

改成

short_open_tag=On


狀況
Warning: Cannot modify header information – headers already sent by
解決辦法
因為 header('Content-Type:text/html;charset= big5');發送頭之前不能有任何輸出,空格也不行,你需要將header(...)之前的空格去掉,或者其他輸出的東西去掉,如果他上面include其他文件了,你還要檢查其他文件裏是否有輸出。

沒有留言:

張貼留言