phpMyAdmin Fatal error: Call to undefined function __()

前端 未结 5 2031
余生分开走
余生分开走 2020-12-11 23:13

Server running RHEL 7 and PHP 5.4.16. When I try to open /phpMyAdmin in my browser, I\'m given the error:

Fatal error: Call to undefined function __() in /us

5条回答
  •  鱼传尺愫
    2020-12-11 23:57

    Error "The connection was reset"
    File: /usr/share/phpmyadmin/libraries/common.inc.php

    search:

    $GLOBALS['PMA_Config'] = new PMA_Config(CONFIG_FILE);

    replace with:

    $GLOBALS['PMA_Config'] = new PMA_Config();
    

提交回复
热议问题