警告:在session_start()[function.session啓動]:無法發送會話緩存限制器 - 已經發送了頭(輸出開始/ SRV /磁盤2//WWW/ /admin.php:39被送到輸出之前被調用)在/ SRV /磁盤2//網絡/ /admin.php第40行PHP的警告錯誤
PHP的警告錯誤
回答
你不需要有任何的空間,你必須在頂部開始會話!例如:
<?php
session_start();
header('Cache-control: private');
UPDATE:<?php
對不起,打敗你了!此外,該「標題」行與它無關 – pattyd
還在警告:session_start()[function.session-start]:無法發送會話緩存限制器 - 已發送的頭文件(輸出在/srv/disk2/1439229/www/thefastschool.co.nf/處開始admin.php:8)在/srv/disk2/1439229/www/thefastschool.co.nf/admin.php上線9 警告:無法修改標題信息 - 已經發送的標題(在/ srv/disk2/1439229/www/thefastschool.co.nf/admin.php:8)在/srv/disk2/1439229/www/thefastschool.co.nf/admin.php上線10 – user2594603
session_start()
總是需求。
文檔的前兩行必須是這樣的:
<?php
session_start()
嘗試調用session_start()
任何輸出之前!此功能
更多信息可以在這裏找到:http://us2.php.net/manual/en/function.session-start.php
+1,可怕的部分是如果你在共享主機,他們輸出的東西在你面前。或者更糟糕的是,['auto_prepend_file'](http://php.net/manual/en/ini.core.php)... –
- 1. PHP SOAP錯誤警告
- 2. PHP錯誤警告消息
- 3. php函數錯誤警告
- 4. PHP警告 - 內部錯誤
- 5. 修復PHP警告/錯誤
- 6. 錯誤警告:mysql_fetch_assoc()在PHP
- 7. php警告:strtotime()錯誤
- 8. PHP錯誤告示警告截斷
- 9. 錯誤/警告
- 10. phpBB的錯誤 - PHP的警告
- 11. PHP的警告:除零錯誤
- 12. ftp_put()中的PHP警告錯誤
- 13. PHP錯誤警告:require_once WordPress的3.4.1
- 14. 意外的PHP警告錯誤
- 15. 警告:mysql_fetch_array():錯誤
- 16. CGContext錯誤/警告
- 17. XSD.exe警告錯誤
- 18. Taglib錯誤/警告
- 19. 警告框錯誤
- 20. AclExtras警告錯誤
- 21. 未定義指數PHP錯誤/警告
- 22. PHP警告,聲明和錯誤
- 23. PHP會話錯誤和警告
- 24. PHP不顯示錯誤或警告
- 25. PHP錯誤警告:未知(包括/ main.php)
- 26. PHP錯位的DocType警告
- 27. 「strcpy的」錯誤和警告
- 28. PHP的警告:MySQL錯誤3]寫文件時出錯「的/ tmp/
- 29. 警告 - 錯誤提出:錯誤:聽EADDRINUSE
- 30. APNS錯誤警告:stream_socket_client()錯誤
什麼是'admin.php'線38/39之前不要讓空白? 'session_start'應該是第一行... –
請顯示更多代碼 – pattyd
} <?php session_start(); – user2594603