Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Databse password


Dionisay

Recommended Posts

I mean for oscommerce. When you install oscommerce you enter the database details. They are then stored some where so catalog can enter info in the database... I need to know were the catalog keeps the username and password so I can update it manualy. (In the code)

Link to comment
Share on other sites

4. View the file catalog/includes/configure.php and make necessary changes.

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'YOUR_USERNAME_HERE');

define('DB_SERVER_PASSWORD', 'YOUR_PASSWORD_HERE');

define('DB_DATABASE', 'YOUR_DATABSE_NAME_HERE');

define('USE_PCONNECT', 'false'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>

 

GF

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...