
Farooq Ahmed
|
| Posted: 04/03/2002, 3:29 AM |
|
I am working in ASP for long time. Today I worked on PHP, MySQL first time. Everything is fine but when I run the programme, it shows the warning, which is given below and says that there is error on line 16. When I delete line 16, everything works fine but second time when I want to generate my application again, it changes the source code again with the error.
On line 16, following is written:
=================
session_start();
==================
Actual error is following:
Warning: open(/tmp/sess_adb4b88f881389cb60fd7304e55c484f, O_RDWR) failed: m (2) in F:\asset\asset-cod\abc11.php on line 16
abc
Name age salary
national www1.isb.org/news 2012-10-20
energy coservation www1.isb.org/news 2001-02-20
Insert
Warning: open(/tmp/sess_adb4b88f881389cb60fd7304e55c484f, O_RDWR) failed: m (2) in Unknown on line 0
Warning: Failed to write session data. Please check that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
|
|
|
 |
Alex Alexapolsky
|
| Posted: 04/03/2002, 3:36 AM |
|
this kind of error means that PHP tries to store session information in
unexisting directory. To set it up correctly you must open your php.ini
file (usually residing in winnt or windows catalog) , find session_save_path
variable and set to to existing directory where PHP will store session info , e.g c:/windows/temp
|
|
|
 |
|

|