25 lines
771 B
PHP
Executable File
25 lines
771 B
PHP
Executable File
<?php
|
|
|
|
// Session Information
|
|
//
|
|
define('SESSNAME', 'dynamiclinks'); // Must be only letters and numbers!
|
|
define('PAGETITLE', 'Link Registration'); // This is the large label in the header of each page
|
|
|
|
// Database Type: Valid values are 'mysql' and 'sqlite'
|
|
//
|
|
define('DBTYPE', 'mysql');
|
|
|
|
// SQLite Database Configuration. Ignore if not using SQLite
|
|
// This must be set to the full path of the SQLite database file.
|
|
// The folder containing this file MUST also be writable!
|
|
// SUPER IMPORTANT!!! This file MUST be included in a regular backup schedule!!!
|
|
//
|
|
define('SQLITEDB', '/tmp/mcplaces.sqlite');
|
|
|
|
// MySQL Database Configuration. Ignore if not using MySQL
|
|
//
|
|
define('DBHOST', 'localhost');
|
|
define('DBUSER', 'root');
|
|
define('DBPASS', '');
|
|
define('DBNAME', 'test');
|