Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
The configured locale en_GB is not installed on your system.
Thomas Edwards
August 2012
So in my logs I'm getting: The configured locale en_GB is not installed on your system. Here's my locale: LANG=en_GB.UTF-8
LANGUAGE=
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC="en_GB.UTF-8"
LC_TIME="en_GB.UTF-8"
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY="en_GB.UTF-8"
LC_MESSAGES="en_GB.UTF-8"
LC_PAPER="en_GB.UTF-8"
LC_NAME="en_GB.UTF-8"
LC_ADDRESS="en_GB.UTF-8"
LC_TELEPHONE="en_GB.UTF-8"
LC_MEASUREMENT="en_GB.UTF-8"
LC_IDENTIFICATION="en_GB.UTF-8"
LC_ALL= If I run `dpkg-reconfigure locales`: Generating locales...
en_AG.UTF-8... up-to-date
en_AU.UTF-8... up-to-date
en_BW.UTF-8... up-to-date
en_CA.UTF-8... up-to-date
en_DK.UTF-8... up-to-date
en_GB.UTF-8... up-to-date
en_HK.UTF-8... up-to-date
en_IE.UTF-8... up-to-date
en_IN.UTF-8... up-to-date
en_NG.UTF-8... up-to-date
en_NZ.UTF-8... up-to-date
en_PH.UTF-8... up-to-date
en_SG.UTF-8... up-to-date
en_US.UTF-8... up-to-date
en_ZA.UTF-8... up-to-date
en_ZM.UTF-8... up-to-date
en_ZW.UTF-8... up-to-date
Generation complete. If I run `locale -a`: C
C.UTF-8
en_AG
en_AU.utf8
en_BW.utf8
en_CA.utf8
en_DK.utf8
en_GB.utf8
en_HK.utf8
en_IE.utf8
en_IN
en_NG
en_NZ.utf8
en_PH.utf8
en_SG.utf8
en_US.utf8
en_ZA.utf8
en_ZM
en_ZW.utf8
POSIX Set in config.php: 'locale' => 'en_GB' Using Ubuntu 12.04.1 LTS Any ideas?
Thomas Edwards
December 2012
So obviously I need to set the locale to ‘en_GB.UTF-8’!
vesselinv
January 2013
+1 I was just looking into this myself
ilNotturno
January 2013
You have 2 choices:
1) Modify your application locale
2) Install the en_GB locale to the system
For the first step you can add to your config.php file the following line: 'locale' => 'en_GB'. You file should be like this:
return array('locale' => 'en_GB');
For the second one try to install the locale you want with "sudo locale-gen en_GB.utf8" (or whatever locales you want)
Try with "sudo locale-gen en_GB.ISO-8859-15 (or whatever locales you want)"
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
ilNotturno
January 2013
Thomas Edwards
December 2012
vesselinv
January 2013