phpMyAdmin – Set default language

I don’t know why my newly installed phpMyAdmin selects simplified chinese as default. I hate simplified chinese. And now i figure out how to set the default language.

If you want to enforce a specific language, append the following line in the config.inc.php

$cfg['Lang'] = 'en-utf-8'; // Force this language for all users

 

On the other hand, if you allow users to select their own language but with a default language in the selection list. Use the following setting.

$cfg['DefaultLang'] = 'en-utf-8'; // Language if no other language is recognized

 

Restart the Apache and clear the browser cache. The language is set now.

Done =)

Reference: StackOverflow – Changing the language of PHPMyAdmin from German to English

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.