Writech Posted October 21, 2007 Share Posted October 21, 2007 Hy! I'm getting an error message like this : I cant fix this problem, because i dont have much knowledge in programming PHP and Mysql. So I hope, you can fix it. ^_^ I'll be very thankful. Link to comment Share on other sites More sharing options...
Nullachtfuffzehn Posted October 21, 2007 Share Posted October 21, 2007 You can fix that error by setting the STORE_SESSIONS constant to 'mysql' in your /includes/configure.php. Link to comment Share on other sites More sharing options...
Writech Posted October 22, 2007 Author Share Posted October 22, 2007 It's already set to 'mysql'. But problem haven't gone. Link to comment Share on other sites More sharing options...
Gauravs Posted October 22, 2007 Share Posted October 22, 2007 OK, Options A. You have to modify \includes\functions\sessions.php Change function tep_session_save_path($path = '') { if (!empty($path)) { return session_save_path($path); } else { return session_save_path(); } } To function tep_session_save_path($path = '') { if (STORE_SESSIONS != 'mysql') { if (!empty($path)) { return session_save_path($path); } else { return session_save_path(); } } } Option B. Create a folder /tmp in Catalog using ftp / filemanager. Login to admin -> Configurations -> Cache -> change /tmp to /catalog/tmp so that userid issue gets resolved. My pref. is method A. HTH Best Regards,Gaurav Link to comment Share on other sites More sharing options...
Writech Posted October 22, 2007 Author Share Posted October 22, 2007 Thank you very much! The option A resolved the problem. :rolleyes: Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.