Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
The configured locale en_GB is not installed on your system.
  • 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?
  • So obviously I need to set the locale to ‘en_GB.UTF-8’!
  • +1 I was just looking into this myself
  • 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)"

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion