Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Error Message - session_save_path


Writech

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...