OScommerce files to be aware of - akoston/McK-CCDC GitHub Wiki
https://www.fastcomet.com/tutorials/oscommerce/configuration-files Note:the url and the database name,username,and password will be diffrent in the game In osCommerce, there are two main configuration files that you need to be aware of. One is for your website's front end and one for the administrative area. Access the directory of your website on the server and navigate to the following two files:
includes/configure.php admin/includes/configure.php Both files contain similar information, such as the details for the database used on your website.
define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'oscom_osc'); define('DB_SERVER_PASSWORD', 'p4ssw0rd'); define('DB_DATABASE', 'oscom_osc'); Also, the file contains information about the location of your store on the server, as well as the domain name assigned to it:
define('HTTP_SERVER', 'http://oscom.fcomet.com'); define('HTTPS_SERVER', 'http://oscom.fcomet.com'); define('DIR_FS_CATALOG', '/home/oscom/public_html/')