it will go into the root of your osclass folder
it will look like this, and be named config.php
<?php
/**
* The base MySQL settings of Osclass
*/
define('MULTISITE', 0);
/** MySQL database name for Osclass */
define('DB_NAME', '**********');
/** MySQL database username */
define('DB_USER', '*********');
/** MySQL database password */
define('DB_PASSWORD', '*******');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Table prefix */
define('DB_TABLE_PREFIX', 'oc_');
define('REL_WEB_URL', '/osclassinstall');
define('WEB_PATH', 'http://www.yourdomain.com/osclassinstall);
/** debug */
define('OSC_DEBUG_DB', false) ;
define('OSC_DEBUG_DB_EXPLAIN', false) ;
?>