开源,自由,平等,共享,包容,沟通

2008年11月4日星期二

安装 phpMyAdmin 3.0.1.1 管理器

 
01. 复制 phpMyAdmin/libraries/config.default.php 文件到 phpMyAdmin/config.inc.php。

02. 在 phpMyAdmin/config.inc.php 文件中修改如下:

    $cfg['PmaAbsoluteUri'] = 'http://192.168.0.1/phpMyAdmin';
    $cfg['blowfish_secret'] = 'longlong';/* 任意字符 */
    $cfg['Servers'][$i]['host'] = 'localhost';
    $cfg['Servers'][$i]['port'] = '3306';
    $cfg['Servers'][$i]['auth_type'] = 'cookie';
    $cfg['Servers'][$i]['user'] = 'root';
    $cfg['Servers'][$i]['password'] = 'bianzhilong';

03. 保存文件。

04. 如果出现“无法载入 mcrypt 扩展,请检查 PHP 配置”的错误提示,继续向下设置。

05. 复制 PHP5/libmcrypt.dll 文件到 C:\WINDOWS\system32\libmcrypt.dll。

06. 打开 C:\WINDOWS\php.ini 文件,将如下代码:

    ;extension=php_mcrypt.dll

修改为下:

    extension=php_mcrypt.dll

07. 如果出现“没有发现 PHP 的扩展设置 mbstring, 而当前系统好像在使用宽字符集。没有 mbstring 扩展的 phpMyAdmin 不能正确识别字符串,可能产生不可意料的结果.”的错误提示,继续向下设置。

08. 打开 C:\WINDOWS\php.ini 文件,将如下代码:

    ;extension=php_mbstring.dll

修改为下:

    extension=php_mbstring.dll
 

没有评论: