现在位置: 首页 > phpmyadmin
2011年07月19日 linux类, WIN类 ⁄ 共 191字 暂无评论 ⁄ 阅读 663 views 次
设置phpmyadmin管理多台MySQL 先看下效果图吧   其实要实现这个,只需简单的一步操作即可: 在 phpmyadmin\libraries\config.default.php中,将 $cfg['AllowArbitraryServer'] = false; 改为: $cfg['AllowArbitraryServer'] = true; 这样就可以了实现了,您实现了吗? 谢谢您对脉脉茶的支持!
阅读全文

2011年07月02日 服务器相关 ⁄ 共 443字 暂无评论 ⁄ 阅读 561 views 次
新版本的PhpMyAdmin 增强了安全性,需要在配置文件设置一个短语密码。否则进入之后会有“配置文件现在需要一个短语密码。”的红色警叹提示。     解决方法:     1、将 phpMyAdmin/libraries/config.default.php中的     $cfg['blowfish_secret'] = ''; 改成 $cfg['blowfish_secret'] = '123456'; (注:其中的’123456′为随意的字符)     2、在phpMyAdmin目录中,打开config.sample.inc.php,18行     $cfg['blowfish_secret'] = ...
阅读全文
2011年06月11日 WIN类 ⁄ 共 688字 暂无评论 ⁄ 阅读 665 views 次
今天有个客户问了这个问题,说他安装的phpmyadmin打开后页面错误,而且底部出现了这个错误 Warning: Unknown: open(C:\WINDOWS\TEMP\\sess_e8digff7draam519u52941s7u7, O_RDWR) failed: Permission denied (13) in Unknown on line 0 Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line 0 找了一通,发现是权限的问题,...
阅读全文
2011年04月15日 杂七杂八 ⁄ 共 164字 暂无评论 ⁄ 阅读 1,093 views 次
phpmyadmin删除数据库字段 今天突然需要这个操作!然后就写了这篇文章! 其实只要执行一段简单的sql命令即可 命令如下: update 数据库表名称 set 字段名称=''   比如要清空cdb_memberfields表下medals字段 update cdb_memberfields set medals='' 执行这条SQL命令即可 !!!
阅读全文
phpMyAdmin安装后访问出现Warning: require_once(./libraries/common.inc.php)错误的解决办法 安装好PHPmyAdmin后,在IE里访问时会出现下面的这种错误: Warning: require_once(./libraries/common.lib.php) [function.require-once]: failed to open stream: No such file or directory in D:\php\phpMyAdmin\index.php on line 36 Fatal error: require_once() [function.require]: Failed opening required './libraries/com...
阅读全文
安装好PHPmyAdmin后,在IE里访问时会出现下面的这种错误: Warning: require_once(./libraries/common.lib.php) [function.require-once]: failed to open stream: No such file or directory in D:\php\phpMyAdmin\index.php on line 36 Fatal error: require_once() [function.require]: Failed opening required './libraries/common.lib.php' (include_path='.;C:\php5\pear') in D:\php\phpMyAdmin\index.php on line 36 c...
阅读全文
×