1<?php
2// Coppermine configuration file
3
4// Database configuration
5$CONFIG['dbtype'] =					'mysqli';		// Your database type
6$CONFIG['dbserver'] =				'localhost';		// Your database server
7$CONFIG['dbuser'] =					'root';		// Your database username
8$CONFIG['dbpass'] =					'';		// Your database password
9$CONFIG['dbname'] =					'coppermine';		// Your database name
10
11
12// DATABASE TABLE NAMES PREFIX
13$CONFIG['TABLE_PREFIX'] =			'cpg16x_';
14