* Version: $Id: setup.php,v 1.23.2.8.2.2 2006/05/15 07:57:09 nijel Exp $ * Date: Mon, 22 May 2006 14:44:41 GMT */ /* Servers configuration */ $i = 0; /* Server sql.mit.edu (cookie) [1] */ $i++; $cfg['Servers'][$i]['host'] = 'sql.mit.edu'; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* End of servers configuration */ $cfg['PmaAbsoluteUri'] = 'https://scripts.mit.edu/~sql/phpMyAdmin-HTTPS/'; $cfg['blowfish_secret'] = '442edbaf575294.08808821'; $cfg['LeftFrameLight'] = false; $cfg['LeftFrameDBTree'] = false; $cfg['LeftDisplayLogo'] = false; $cfg['LeftDisplayServers'] = false; //$cfg['DefaultTabServer'] = 'main.php'; $cfg['DefaultTabServer'] = 'server_databases.php'; $cfg['DefaultTabDatabase'] = 'db_details_structure.php'; $cfg['DefaultTabTable'] = 'tbl_properties_structure.php'; $cfg['LightTabs'] = true; $cfg['ForceSSL'] = true; $cfg['ShowPhpInfo'] = false; $cfg['ShowChgPassword'] = false; $cfg['MenuIconic'] = true; $cfg['ErrorIconic'] = false; $cfg['MainPageIconic'] = true; $cfg['MenuBarIconic'] = false; $cfg['AllowUserDropDatabase'] = false; $cfg['ShowStats'] = false; $cfg['ThemeManager'] = false; $cfg['ShowCreateDb'] = false; $cfg['ThemeDefault'] = 'original'; $cfg['LoginCookieRecall'] = false; $cfg['OBGzip'] = 'auto'; $cfg['PropertiesIconic'] = false; $cfg['ShowHttpHostTitle'] = false; //$cfg['SetHttpHostTitle'] = 'sql.mit.edu'; $cfg['LeftBgColor'] = '#2050A0'; $cfg['ShowBlob'] = true; if (isset($_GET['db'])) $_GET['db'] = str_replace(' ', '+', $_GET['db']); if (isset($_COOKIE['db'])) $_COOKIE['db'] = str_replace(' ', '+', $_COOKIE['db']); if (isset($_POST['db'])) $_POST['db'] = str_replace(' ', '+', $_POST['db']); if (isset($_REQUEST['db'])) $_REQUEST['db'] = str_replace(' ', '+', $_REQUEST['db']); if (isset($_GLOBAL['db'])) $_GLOBAL['db'] = str_replace(' ', '+', $_GLOBAL['db']); if (isset($_SESSION['db'])) $_SESSION['db'] = str_replace(' ', '+', $_SESSION['db']); if (isset($GLOBALS['db'])) $GLOBALS['db'] = str_replace(' ', '+', $GLOBALS['db']); if (isset($url_params['db'])) $url_params['db'] = str_replace(' ', '+', $url_params['db']); if (isset($db)) $db = str_replace(' ', '+', $db); if (isset($db_start)) $db_start = str_replace(' ', '+', $db_start); ?>