Please do help me with the session's problem. I got wrote session_start() in my coding. I get this error message as i execute it:
Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp)
I'd checked the php.ini file and i really don't have any idea to configure it :
[Session]
session.save_handler = files
session.save_path = /tmp
; Whether to use cookies.
session.use_cookies = 1
; Name of the session (used as cookie name).
session.name = PHPSESSID
; Initialize session on request startup.
session.auto_start = 1
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0
; The path for which the cookie is valid.
session.cookie_path = /
; The domain for which the cookie is valid.
session.cookie_domain =
; Handler used to serialize data. php is the standard serializer of PHP.
session.serialize_handler = php