Thursday 8 November 2018

Mysql: Setting PHPMyAdmin Language

The user interface for phpmyadmin is displayed in german for some reason and i'd like to change it to english but don't know how. I installed the latest xampp.

 Answers


At the first site is a dropdown field to select the language of phpmyadmin.
In the config.inc.php you can set:
$cfg['Lang'] = '';
More details you can find in the documentation: http://www.phpmyadmin.net/documentation/



sounds like you downloaded the  xampp package instead of the english xampp package (yes, it's another download-link) where the language is set according to the package you loaded. to change the language afterwards, simply edit the config.inc.php and set:
$cfg['Lang'] = 'en-utf-8';

0 comments:

Post a Comment