錯誤信息:
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存儲路徑
}
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文件是不是用zend加密了?你把代碼重新加密一下再試試