Forum Moderators: coopster
session_save_path("/home/users/web/<bucket>/<your_homedir>/cgi-bin/tmp");
session_start();
What your host is telling you is that you need to use your own tmp directory for storing session files. You see, when you start a session in PHP it will write a file on the server-side with a session id that matches the session id that the client (user's browser) will have. The session id is a hash value that gets transferred back and forth across the web rather than the values stored in the session, they get stored in the file in the tmp directory.
I'm not sure what the <bucket> is in this scenario, but you are probably looking for the DOCUMENT_ROOT environment variable. That will show you your path. Append the '/cgi-bin/tmp' to the end of that and you should be in business, assuming there is indeed a /tmp directory in your cgi-bin directory that is.