• phpmyadmin登录报错crypt_random_string requires at least one symmetric cipher be loaded 解决方法


    通过phpmyadmin登陆时提示以下错误:

    phpmyadmin crypt_random_string requires at least one symmetric cipher be loaded

    报错原因:路径问题。

    解决办法:

    1、进入到phpmyadmin根目录下,打开librariesphpseclibCryptRandom.php。

    2、大概在195行,找到下面代码并把红色背景字体添加进去。

    switch (true) {
    case phpseclib_resolve_include_path('libraries/phpseclib/Crypt/AES.php’):
    if (!class_exists('Crypt_AES’)) {
    include_once 'AES.php’;
    }
    $crypto = new Crypt_AES(CRYPT_AES_MODE_CTR);
    break;
    case phpseclib_resolve_include_path('libraries/phpseclib/Crypt/Twofish.php’):
    if (!class_exists('Crypt_Twofish’)) {
    include_once 'Twofish.php’;
    }
    $crypto = new Crypt_Twofish(CRYPT_TWOFISH_MODE_CTR);
    break;
    case phpseclib_resolve_include_path('libraries/phpseclib/Crypt/Blowfish.php’):
    if (!class_exists('Crypt_Blowfish’)) {
    include_once 'Blowfish.php’;
    }
    $crypto = new Crypt_Blowfish(CRYPT_BLOWFISH_MODE_CTR);
    break;
    case phpseclib_resolve_include_path('libraries/phpseclib/Crypt/TripleDES.php’):
    if (!class_exists('Crypt_TripleDES’)) {
    include_once 'TripleDES.php’;
    }
    $crypto = new Crypt_TripleDES(CRYPT_DES_MODE_CTR);
    break;
    case phpseclib_resolve_include_path('libraries/phpseclib/Crypt/DES.php’):
    if (!class_exists('Crypt_DES’)) {
    include_once 'DES.php’;
    }
    $crypto = new Crypt_DES(CRYPT_DES_MODE_CTR);
    break;
    case phpseclib_resolve_include_path('libraries/phpseclib/Crypt/RC4.php’):
    if (!class_exists('Crypt_RC4’)) {
    include_once 'RC4.php’;
    }
    $crypto = new Crypt_RC4();
    break;
    default:
    user_error('crypt_random_string requires at least one symmetric cipher be loaded’);
    return false;
    }
  • 相关阅读:
    Getting Started with MongoDB (MongoDB Shell Edition)
    Ioc
    BsonDocument
    Find or Query Data with C# Driver
    Insert Data with C# Driver
    Connect to MongoDB
    What's the difference between returning void and returning a Task?
    Import Example Dataset
    jQuery来源学习笔记:整体结构
    Word文件交换的电脑打开字体、排版变化的原因和解决方法!
  • 原文地址:https://www.cnblogs.com/ymmt/p/8203648.html
Copyright © 2020-2023  润新知