I am using
ini_set("session.use_cookies","0");
to disable cookies but I don't see PHPSESSID showing up like I thought it would, so I
don't think its working. I call it before session_start(). After the ini_set call I do
session_log("CSE_Session_Start");
session_module_name("user");
session_set_save_handler("sess_open", "sess_close",
"sess_read", "sess_write", "sess_remove", "sess_gc");
session_start();ANy ideas? Thanks Rich

