Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting PHPMyAdmin Language [closed]

Tags:

php

phpmyadmin

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.

Thanks

like image 217
Mahie Avatar asked Sep 23 '11 12:09

Mahie


People also ask

What language is phpMyAdmin?

phpMyAdmin is a free and open source administration tool for MySQL and MariaDB. As a portable web application written primarily in PHP, it has become one of the most popular MySQL administration tools, especially for web hosting services.

Why my localhost phpMyAdmin is not opening?

Try starting MySQL and Apache in Xampp. Verify Port Number assigned to Apache (By default it should be 80). Now load localhost/phpmyadmin . It solved my problem.

Where is phpMyAdmin config inc PHP?

The configuration files are located in the /etc/phpmyadmin directory. The main configuration file is /etc/phpmyadmin/config. inc. php, which contains the configuration options that apply globally to phpMyAdmin.


1 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/

like image 121
Scoutman Avatar answered Sep 22 '22 23:09

Scoutman