Added DB_DSN
This commit is contained in:
parent
ebed5b55db
commit
796a544560
2 changed files with 8 additions and 2 deletions
|
@ -11,7 +11,8 @@
|
|||
|
||||
// Database stuff
|
||||
|
||||
// "mysql", "pgsql", etc
|
||||
// SQL driver ("mysql", "pgsql", "sqlite", "dblib", etc)
|
||||
// http://www.php.net/manual/en/pdo.drivers.php
|
||||
define('DB_TYPE', 'mysql', true);
|
||||
// Hostname or IP address
|
||||
define('DB_SERVER', 'localhost', true);
|
||||
|
@ -20,6 +21,8 @@
|
|||
define('DB_PASSWORD', '', true);
|
||||
// TinyBoard database
|
||||
define('DB_DATABASE', '', true);
|
||||
// Anything more to add to the DSN string (eg. port=xxx;foo=bar)
|
||||
define('DB_DSN', '', true);
|
||||
|
||||
// The name of the session cookie (PHP's $_SESSION)
|
||||
define('SESS_COOKIE', 'imgboard', true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue