程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> phpmyadmin config.inc.php配置示例

phpmyadmin config.inc.php配置示例

編輯:PHP綜合
文件地址:D:\wamp\apps\phpmyadmin4.0.4\config.inc.php

文件內容:
復制代碼 代碼如下:
<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 4.0.4 setup script
* Date: Mon, 26 Aug 2013 05:32:47 +0000
*/

$cfg['blowfish_secret'] = 'a8b7c6d';
$i = 0;
$i++;
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['host'] = '127.0.0.1:3306';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

$cfg['DefaultLang'] = 'en';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
$cfg['blowfish_secret'] = 'SB12035555';
$cfg['Error_Handler']['display'] = true;
$cfg['VersionCheck'] = false;
$cfg['ThemeDefault'] = 'original';
$cfg['MaxDbList'] = 300;
$cfg['MaxNavigationItems'] = 300;
$cfg['MaxTableList'] = 300;
$cfg['NavigationDisplayLogo'] = false;


$cfg['ShowDbStructureCreation'] = true;
$cfg['ShowDbStructureLastUpdate'] = true;
$cfg['ShowDbStructureLastCheck'] = false;
$cfg['HideStructureActions'] = true;
$cfg['FontFamily'] = 'MS YaHei';
$cfg['FontFamilyFixed'] = 'Vencent';

?>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved