forked from shimondoodkin/gtdphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.php
More file actions
14 lines (14 loc) · 786 Bytes
/
config.sample.php
File metadata and controls
14 lines (14 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
// copy this file to config.inc.php, and set your MySQL database connection info
$config = array(
//connection information
"host" => 'localhost', //the hostname of your database server - cannot be empty
"db" => '', //the name of your database - cannot be empty
"prefix" =>'gtdphp_', // the GTD table prefix for your installation (optional) - can be an empty string
"user" => '', //username for database access - cannot be empty
"pass" => '', //database password
//database information
"dbtype" => 'mysql' //database type: currently only 'mysql' is valid. DO NOT CHANGE!
// remove the "//" from the line below if you are going to use the EXPERIMENTAL UTF-8 support
// ,"charset" => 'UTF8'
);