Error message:
Fatal error: session_start() [function.session-start]: Failed to initialize storage module: files (path: ) in C:usrphpMyAdminlibrariessession.inc.php on line 75
I. Change server configuration:
1. Check the error.log (Apache2.2logs) file to see if there is an error report. Not found.
2. Check whether the value of session.save_handler in php.ini is files, if not, change it to files
3. Check whether session.save_path is commented in the php.ini file. If so, remove the preceding ";".
4. Change the path after save_path to an existing path, such as "D:phptemp"
5. Check whether the attributes of the temp folder are readable and writable.
6. Restart the APACHE server. OK
Change the session storage path in the II.php program
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
The program tries to interpret the methods or properties of an object. Please make sure that the class you want to operate is calling "loaded_before_unserialize( )" "Car" has been defined before, or provides a __autoload() method to load the class definition. In D:\TsbGameWebSystem\back_car.php, line 15
means that you call the Car attribute or Method has not been defined before!
Is your php file encrypted with zend? Please re-encrypt the code and try again