Warning: Failed to write session data (files). Please verify

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
kendall
Forum Regular
Posts: 852
Joined: Tue Jul 30, 2002 10:21 am
Location: Trinidad, West Indies
Contact:

Warning: Failed to write session data (files). Please verify

Post by kendall »

WHAT THE HELL DOES THIS MEAN?

guys im was just trying to
do a session_id() when this thing just keeps happening

i wanted to create a temp session so as to keep track of a visitors shoppiing cart

i created the session_id and stored it as a basket it in a datbase

untill the end of completing a form

it was working fine when i was doing some test but damn

now all i get is this

dont even no wat line 0 is

it seems like a host errror but i ad least want to find out what it is and what caused it all sudden

Kendall :(
User avatar
daven
Forum Contributor
Posts: 332
Joined: Tue Dec 17, 2002 1:29 pm
Location: Gaithersburg, MD
Contact:

Post by daven »

What do you get? Error, code snippet, etc., would be useful.
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

Probably session.save_path is set to an invalid or unaccessible directory.

Code: Select all

<?php phpinfo(); ?>
will tell you
Post Reply