WAMP/MySQL errors not in correct language

后端 未结 3 659
离开以前
离开以前 2020-11-29 01:33

I\'ve re-installed WAMP multiple times, searched literally hundreds of pages, and its not fixed this issue:

\"en

3条回答
  •  日久生厌
    2020-11-29 02:05

    $cfg['Lang'] = 'en-utf-8'; and friends change the language for phpmysql, not for the mysql server, so anything coming from the database server itself will be unaffected.

    You need to start the server daemon with --lc_messages=en_US (or put that in the relevant config file), for a per-session setting just use SET lc_messages = 'en_US';

提交回复
热议问题