Call to undefined function __() error - phpMyAdmin

后端 未结 10 1482
温柔的废话
温柔的废话 2020-11-27 18:23

When i want run phpMyAdmin on my browser, that show me this error:

Fatal error: Call to undefined function __() in /usr/share/phpMyAdmin/libraries/core.lib.p         


        
10条回答
  •  春和景丽
    2020-11-27 19:05

    Check that your session directory is writable by the webserver process.

    The best way to do so is to create your own phpinfo file; in any web accessible folder create a file (you can call it test.php or phpinfo.php or whatever you'd like) with the following content:

    
    

    Open that file in your browser (http://localhost/test.php or similar) and look for the line session.save_path. That's your session folder; make sure the permissions are suitable and see if that helps.

    More information from a similar thread.

提交回复
热议问题