1

My locally installed Laravel's debug messages show partly in French (shown in the image below). How can I turn it into English?

See the text inconnu dans

Can anyone help, please?

Thanks.

Placid
  • 1,400
  • 3
  • 22
  • 33
  • 2
    I believe that's not Laravel but rather the MySQL server showing errors in french. Maybe you'll find the solution [here](http://dev.mysql.com/doc/refman/5.5/en/error-message-language.html) – lukasgeiter Nov 17 '14 at 09:24

1 Answers1

1

Thanks to lukasgeiter for the right direction. I am using WAMP Server and MySQL was generating the errors in French. The solution was posted in this post in stackoverflow by RiggsFolly

I am repeating here the process for anyone else who get into the same trouble:

Go into my.ini file and look for the following:

# Change your locale here !
lc-messages=fr_FR

Replace it with English

lc-messages=en_GB
Community
  • 1
  • 1
Placid
  • 1,400
  • 3
  • 22
  • 33