<?php
/* $Id: config.inc.php,v 1.13 2001/07/21 21:59:00 swix Exp $ */
/*
* phpMyAdmin Configuration File
* All directives are explained in Documentation.html
*/
/*
* Bookmark Table Structure
*
* CREATE TABLE bookmark (
* id int(11) DEFAULT \'0\' NOT NULL auto_increment,
* dbase varchar(255) NOT NULL,
* label varchar(255) NOT NULL,
* query text NOT NULL,
* PRIMARY KEY (id)
* );
*
*/
// The $cfgServers array starts with $cfgServers[1]. Do not use $cfgServers[0].
// You can disable a server config entry by setting host to \'\'.
$cfgServers[1][\'host\'] = \'127.0.0.1\'; // MySQL hostname
$cfgServers[1][\'port\'] = \'\'; // MySQL port - leave blank for default port
$cfgServers[1][\'adv_auth\'] = false; // Use advanced authentication?
$cfgServers[1][\'stduser\'] = \'\'; // MySQL standard user (only needed with advanced auth)
$cfgServers[1][\'stdpass\'] = \'\'; // MySQL standard password (only needed with advanced auth)
$cfgServers[1][\'user\'] = \'root\'; // MySQL user (only needed with basic auth)
$cfgServers[1][\'password\'] = \'007007\'; // MySQL password
(only needed with basic auth)
$cfgServers[1][\'only_db\'] = \'\'; // If set to a db-name, only this db is accessible
$cfgServers[1][\'verbose\'] = \'\'; // Verbose name for this host - leave blank to show the hostname
$cfgServers[1][\'bookmarkdb\'] = \'\'; // Bookmark db - leave blank for no bookmark support
$cfgServers[1][\'bookmarktable\'] = \'\'; // Bookmark table - leave blank for no bookmark support
$cfgServers[2][\'host\'] = \'\';
$cfgServers[2][\'port\'] = \'\';
$cfgServers[2][\'adv_auth\'] = false;
$cfgServers[2][\'stduser\'] = \'\';
$cfgServers[2][\'stdpass\'] = \'\';
$cfgServers[2][\'user\'] = \'root\';
$cfgServers[2][\'password\'] = \'\';
$cfgServers[2][\'only_db\'] = \'\';
$cfgServers[2][\'verbose\'] = \'\';
$cfgServers[2][\'bookmarkdb\'] = \'\'; // Bookmark db - leave blank for no bookmark support
$cfgServers[2][\'bookmarktable\'] = \'\'; // Bookmark table - leave blank for no bookmark support
$cfgServers[3][\'host\'] = \'\';
$cfgServers[3][\'port\'] = \'\';
$cfgServers[3][\'adv_auth\'] = false;
$cfgServers[3][\'stduser\'] = \'\';
$cfgServers[3][\'stdpass\'] = \'\';
$cfgServers[3][\'user\'] = \'root\';
$cfgServers[3][\'password\'] = \'\';
$cfgServers[3][\'only_db\'] = \'\';
$cfgServers[3][\'verbose\'] = \'\';
$cfgServers[3][\'bookmarkdb\'] = \'\'; // Bookmark db - leave blank for no bookmark support
$cfgServers[3][\'bookmarktable\'] = \'\'; // Bookmark table - leave blank for no bookmark support
// If you have more than one server configured, you can set $cfgServerDefault
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfgServerDefault *MUST* be
// set to that server.
$cfgServerDefault = 1; // Default server (0 = no default server)
$cfgServer = \'\';
unset($cfgServers[0]);
// Be sure to include no trailing slash on the path
$cfgManualBase = \"
http://www.mysql.com/documentation/mysql/bychapter\";$cfgConfirm = true;
$cfgPersistentConnections = false;
$cfgBorder = \"0\";
$cfgThBgcolor = \"#D3DCE3\";
$cfgBgcolorOne = \"#CCCCCC\";
$cfgBgcolorTwo = \"#DDDDDD\";
$cfgMaxRows = 30;
$cfgOrder = \"ASC\";
$cfgShowBlob = true;
$cfgShowSQL = true;
$cfgTextareaCols = \"40\";
$cfgTextareaRows = \"7\";
$cfgModifyDeleteAtLeft = true;
$cfgModifyDeleteAtRight = false;
$cfgSkipLockedTables = false; // mark used tables, make possible to show locked tables (since 3.23.30)
$cfgLeftWidth = 150; // left frame width
$cfgDefaultLang = \"en\"; // default language to use, if not browser-defined or user-defined
// $cfgLang = \"en\"; // force: always use this language - must be defined in select_lang.inc.php
require(\"./select_lang.inc.php\"); // load language file
$cfgColumnTypes = array(
\"TINYINT\",
\"SMALLINT\",
\"MEDIUMINT\",
\"INT\",
\"BIGINT\",
\"FLOAT\",
\"DOUBLE\",
\"DECIMAL\",
\"DATE\",
\"DATETIME\",
\"TIMESTAMP\",
\"TIME\",
\"YEAR\",
\"CHAR\",
\"VARCHAR\",
\"TINYBLOB\",
\"TINYTEXT\",
\"TEXT\",
\"BLOB\",
\"MEDIUMBLOB\",
\"MEDIUMTEXT\",
\"LONGBLOB\",
\"LONGTEXT\",
\"ENUM\",
\"SET\");
//Some functions discussed on patch #419826 added. - 05/May/2001 - Robbat2
$cfgFunctions = array(
\"ASCII\",
\"CHAR\",
\"SOUNDEX\",
\"ENCRYPT\",
\"LCASE\",
\"UCASE\",
\"NOW\",
\"PASSWORD\",
\"ENCODE\",
\"DECODE\",
\"MD5\",
\"RAND\",
\"LAST_INSERT_ID\",
\"COUNT\",
\"AVG\",
\"SUM\",
\"CURDATE\",
\"CURTIME\",
\"FROM_DAYS\",
\"FROM_UNIXTIME\",
\"PERIOD_ADD\",
\"PERIOD_DIFF\",
\"TO_DAYS\",
\"USER\",
\"WEEKDAY\");
$cfgAttributeTypes = array(
\"\",
\"BINARY\",
\"UNSIGNED\",
\"UNSIGNED ZEROFILL\");
// Setting magic_quotes_runtime - do not change!
set_magic_quotes_runtime(0);
?>