]> andersk Git - sql.git/blame - web/phpMyAdmin_config.inc.php
k-s: uncommitted changes
[sql.git] / web / phpMyAdmin_config.inc.php
CommitLineData
65303177
JP
1<?php
2/*
3 * Generated configuration file
4 * Generated by: phpMyAdmin 2.8.1 setup script by Michal Čihař <michal@cihar.com>
5 * Version: $Id: setup.php,v 1.23.2.8.2.2 2006/05/15 07:57:09 nijel Exp $
6 * Date: Mon, 22 May 2006 14:44:41 GMT
7 */
8
9/* Servers configuration */
10$i = 0;
11
12/* Server sql.mit.edu (cookie) [1] */
13$i++;
14$cfg['Servers'][$i]['host'] = 'sql.mit.edu';
15$cfg['Servers'][$i]['extension'] = 'mysql';
16$cfg['Servers'][$i]['connect_type'] = 'tcp';
17$cfg['Servers'][$i]['compress'] = false;
18$cfg['Servers'][$i]['auth_type'] = 'cookie';
19
20/* End of servers configuration */
21
22$cfg['PmaAbsoluteUri'] = 'https://scripts.mit.edu/~sql/phpMyAdmin-HTTPS/';
23$cfg['blowfish_secret'] = '442edbaf575294.08808821';
24$cfg['LeftFrameLight'] = false;
25$cfg['LeftFrameDBTree'] = false;
26$cfg['LeftDisplayLogo'] = false;
27$cfg['LeftDisplayServers'] = false;
28//$cfg['DefaultTabServer'] = 'main.php';
29$cfg['DefaultTabServer'] = 'server_databases.php';
30$cfg['DefaultTabDatabase'] = 'db_details_structure.php';
31$cfg['DefaultTabTable'] = 'tbl_properties_structure.php';
32$cfg['LightTabs'] = true;
33$cfg['ForceSSL'] = true;
34$cfg['ShowPhpInfo'] = false;
35$cfg['ShowChgPassword'] = false;
36$cfg['MenuIconic'] = true;
37$cfg['ErrorIconic'] = false;
38$cfg['MainPageIconic'] = true;
39$cfg['MenuBarIconic'] = false;
40$cfg['AllowUserDropDatabase'] = false;
41$cfg['ShowStats'] = false;
42$cfg['ThemeManager'] = false;
43$cfg['ShowCreateDb'] = false;
44$cfg['ThemeDefault'] = 'original';
45$cfg['LoginCookieRecall'] = false;
46$cfg['OBGzip'] = 'auto';
47$cfg['PropertiesIconic'] = false;
65303177
JP
48$cfg['ShowHttpHostTitle'] = false;
49//$cfg['SetHttpHostTitle'] = 'sql.mit.edu';
50$cfg['LeftBgColor'] = '#2050A0';
51$cfg['ShowBlob'] = true;
52
53if (isset($_GET['db'])) $_GET['db'] = str_replace(' ', '+', $_GET['db']);
54if (isset($_COOKIE['db'])) $_COOKIE['db'] = str_replace(' ', '+', $_COOKIE['db']);
55if (isset($_POST['db'])) $_POST['db'] = str_replace(' ', '+', $_POST['db']);
56if (isset($_REQUEST['db'])) $_REQUEST['db'] = str_replace(' ', '+', $_REQUEST['db']);
57if (isset($_GLOBAL['db'])) $_GLOBAL['db'] = str_replace(' ', '+', $_GLOBAL['db']);
58if (isset($_SESSION['db'])) $_SESSION['db'] = str_replace(' ', '+', $_SESSION['db']);
59if (isset($GLOBALS['db'])) $GLOBALS['db'] = str_replace(' ', '+', $GLOBALS['db']);
60if (isset($url_params['db'])) $url_params['db'] = str_replace(' ', '+', $url_params['db']);
61if (isset($db)) $db = str_replace(' ', '+', $db);
62if (isset($db_start)) $db_start = str_replace(' ', '+', $db_start);
63?>
This page took 0.0465 seconds and 5 git commands to generate.