Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wamp Server phpMyAdmin not in English

phpMyAdmin is in FRANÇAIS or something and I don't know how to get it to English. I have uninstalled it and reinstalled it with no luck. I downloaded it from the Wamp Server English site: http://www.wampserver.com/en/ But phpMyAdmin is still not in English.

Does anyone know how I can change the language? I can't even read the page to find settings and Google Chrome won't translate the iframes (and phpMyAdmin is full of iframes)

Also I have searched around and I have not been able to find any solutions.

Thanks in advance.

like image 966
Nathan Avatar asked Dec 17 '11 06:12

Nathan


People also ask

How do I access phpMyAdmin in Wamp?

From the WAMP start page (http://localhost) under “Tools”, start phpMyAdmin (or find the WAMP icon in the notification area, left click to open and select phpMyAdmin).

Why Wampserver is not working?

It says that whatever port is used by Apache (Wamp server) is currently used by some other service, so if you want to start the Apache service then you have to changethe port of this Wampserver service. Now for changing the port you have to go to Wampserver menu => Apache. Open httpd. conf file.

Why is my Wamp not turning green?

To fix this issue, navigate to the WAMP server icon in the system tray > Apache > Service administration 'wampapache64' > Install Service. It will open the Command Prompt on your screen. After closing the Command Prompt, go to the same path and click on Start/Resume Service.

How do I reinstall WAMP on Windows 10?

Installation Process of WAMP ServerClick on the "WAMP SERVER 64 BITS (X64). Now, click on the "download directly" link to start downloading. Double-click the downloaded file to launch the WAMP installer. "Select Setup Language" window will appear on the screen and then choose your preferred language.


1 Answers

Solutions for both part:

1) change main language of Phpmyadmin: open PHPMYADMIN homepage, and in the center, there is Language Dropdown. (or insert $cfg['Lang'] = 'en-utf-8'; in \apps\phpmyadmin\config.inc.php )

2) change MYSQL panel language:
(according to RiggsFolly post): Open my.ini (located in /bin/mysql/mysqlX.XX/ ) and change
lc-messages=fr_FR
to
lc-messages=en_GB

like image 58
T.Todua Avatar answered Oct 08 '22 13:10

T.Todua