If you don't have a database available, create one via your server control panel. Most server control panels have easy options to create databases, but if you are unsure, contact your host.
Once a database is available,
copy the 'control/_cfg-sample.php' file as 'control/_cfg.php' and open the 'control/_cfg.php' file in
your text editor and update the connection parameters. Example:
define('DB_HOST', 'localhost');
define('DB_USER', 'joeblogs_admin');
define('DB_PASS', '12345XX');
define('DB_NAME', 'responder');
define('DB_PREFIX', 'mr_');
define('DB_CHAR_SET', 'utf8');
Also, in the 'control/_cfg.php' file set a unique secret key (or salt) value. You can use the
Maian Media secret key service to generate a unique key. See the connection file for more information.
define('SECRET_KEY', 'your unique string here');