程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP中Fatal error session_start()錯誤解決步驟,fatalsession_start

PHP中Fatal error session_start()錯誤解決步驟,fatalsession_start

編輯:關於PHP編程

PHP中Fatal error session_start()錯誤解決步驟,fatalsession_start


錯誤信息:

Fatal error: session_start() [function.session-start]: Failed to initialize storage module: files (path: ) in C:\usr\phpMyAdmin\libraries\session.inc.php on line 75

I.更改服務器配置:

1、檢查error.log(Apache2.2\logs)文件,查看是否有錯誤報告。未發現。

2、檢查php.ini中的session.save_handler的值是否為files,如果不是改為files

3、檢查php.ini文件中session.save_path是否被注釋了,如果有,則去掉前面的”;”。

4、將save_path後面的路徑改成已有的路徑,比如”D:\php\temp”

5、檢查temp文件夾的屬性是否可讀可寫。

6、重啟APACHE服務器。OK

II.php 程序中 改變session存儲路徑

復制代碼 代碼如下:
$sessSavePath = dirname(__FILE__).”/../cache/sessions/”;
if(is_writeable($sessSavePath) && is_readable($sessSavePath))
{
session_save_path($sessSavePath);//重點 改變session存儲路徑
}


PHP中Fatal error: main() [<a href='functionmain'>functionmain</a>]: The script tried to execute a

The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "Car" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide a __autoload() function to load the class definition in D:\TsbGameWebSystem\back_car.php on line 15

程序嘗試去解釋一個對像的方法或屬性,請確認你要操作的類裡在調用"loaded_before_unserialize()"之前已定義”Car”,或提供一個__autoload()的方法加載類的定義,在D:\TsbGameWebSystem\back_car.php 的行15

意思就是說你調用Car這個屬性或方法之前沒有對他進行定義!

 

PHP Fatal error問題

你的php文件是不是用zend加密了?你把代碼重新加密一下再試試
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved