phpmyadmin config.inc.php配置示例_php技巧
程序员文章站
2022-04-09 07:59:18
...
文件地址:D:\wamp\apps\phpmyadmin4.0.4\config.inc.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';
?>
文件内容:
复制代码 代码如下:
/*
* 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';
?>
上一篇: 配置PHP服务器环境步骤详解
下一篇: php二次开发做些啥
推荐阅读
-
解析阿里云ubuntu12.04环境下配置Apache+PHP+PHPmyadmin+MYsql
-
Windows Server 2003下配置IIS6.0+php5+MySql5+PHPMyAdmin环境
-
Windws Server 2008 R2 WEB环境配置之IIS7/IIS7.5+FastCGI+PHP 5.6.4+MYSQL+phpMyAdmin
-
Win2003下APACHE+PHP5+MYSQL4+PHPMYADMIN 的简易安装配置
-
php Apache+phpMyAdmin配置方法
-
phpMyAdmin“无法载入 mysql 扩展, 请检查 PHP 配置”问题的解决方案
-
Win2008 IIS 7.0+php,MySQL,Zend,phpMyadmin配置图解
-
.NET Core 2.0迁移小技巧之web.config 配置文件示例详解
-
Windows上php5.6操作mongodb数据库示例【配置、连接、获取实例】
-
PHP-FPM 设置多pool及配置文件重写操作示例