设为首页收藏本站

ZMX - IT技术交流论坛 - 无限Perfect,追求梦想 - itzmx.com

 找回密码
 注册论坛

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

用百度帐号登录

只需两步,快速登录

搜索
查看: 2760|回复: 0

kangle删除3313的mysql数据库管理页面更新提示和php mcrypt 红色警告提示框

[复制链接]
 成长值: 255

签到天数: 4710 天

[LV.Master]伴坛终老

发表于 2017/9/30 03:05 | 显示全部楼层 |阅读模式 |Google Chrome 60.0.3112.113|Windows 10
天涯海角搜一下: 百度 谷歌 360 搜狗 有道 雅虎 必应 即刻
这些提示是完全不会影响任何使用的,是警告,不是错误信息,不过有些人总觉得不好看,那么就删了吧。

/vhs/kangle/nodewww/dbadmin/mysql/main.php 文件
找到以下代码删除

删除phpMyAdmin 高级功能未全部设置,部分功能不可用。要查出原因请点这里。提示
  1. /**
  2. * Warning about different MySQL library and server version
  3. * (a difference on the third digit does not count).
  4. * If someday there is a constant that we can check about mysqlnd, we can use it instead
  5. * of strpos().
  6. * If no default server is set, PMA_DBI_get_client_info() is not defined yet.
  7. * Drizzle can speak MySQL protocol, so don't warn about version mismatch for Drizzle servers.
  8. */
  9. if (function_exists('PMA_DBI_get_client_info') && !PMA_DRIZZLE) {
  10.     $_client_info = PMA_DBI_get_client_info();
  11.     if ($server > 0 && strpos($_client_info, 'mysqlnd') === false && substr(PMA_MYSQL_CLIENT_API, 0, 3) != substr(PMA_MYSQL_INT_VERSION, 0, 3)) {
  12.         trigger_error(
  13.             PMA_sanitize(
  14.                 sprintf(
  15.                     __('Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'),
  16.                     $_client_info,
  17.                     substr(
  18.                         PMA_MYSQL_STR_VERSION,
  19.                         0,
  20.                         strpos(PMA_MYSQL_STR_VERSION . '-', '-')
  21.                     )
  22.                 )
  23.             ),
  24.             E_USER_NOTICE
  25.         );
  26.     }
  27.     unset($_client_info);
  28. }
复制代码


删除phpMyAdmin 高级功能未全部设置,部分功能不可用。要查出原因请点这里。提示(论坛智障了,排版错误无视他就好)
/**
* Check for existence of config directory which should not exist in
* production environment.
*/
if (file_exists('./config')) {
    trigger_error(__('Directory
  1. config
复制代码
, which is used by the setup script, still exists in your phpMyAdmin directory. You should remove it once phpMyAdmin has been configured.'), E_USER_WARNING);
}

if ($server > 0) {
    $cfgRelation = PMA_getRelationsParam();
    if (! $cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
        $message = PMA_Message::notice(__('The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click %shere%s.'));
        $message->addParam('<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php?' . $common_url_query . '">', false);
        $message->addParam('</a>', false);
        /* Show error if user has configured something, notice elsewhere */
        if (!empty($cfg['Servers'][$server]['pmadb'])) {
            $message->isError(true);
        }
        $message->display();
    } // end if
}


删除缺少 mcrypt 扩展。请检查 PHP 配置。提示
  1. /**
  2. * Warning about mcrypt.
  3. */
  4. if (!function_exists('mcrypt_encrypt') && !$GLOBALS['cfg']['McryptDisableWarning']) {
  5.     PMA_warnMissingExtension('mcrypt');
  6. }
复制代码



你是懒人?想要一键?没问题,运行下面代码
  1. rm -rf /vhs/kangle/nodewww/dbadmin/mysql/main.php
  2. wget http://github.itzmx.com/1265578519/kangle/master/easypanel/main.php -O /vhs/kangle/nodewww/dbadmin/mysql/main.php
复制代码


欢迎光临IT技术交流论坛:http://bbs.itzmx.com/
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册论坛 新浪微博账号登陆用百度帐号登录

本版积分规则

手机版|Archiver|Mail me|网站地图|IT技术交流论坛 ( 闽ICP备13013206号-7 )

GMT+8, 2024/11/26 06:40 , Processed in 0.087504 second(s), 20 queries , MemCache On.

Powered by itzmx! X3.4

© 2011- sakura

快速回复 返回顶部 返回列表