Hello , How can i fix gettext issue with this website dellooni.com/ar-jo/ that has wordked correctly on old server
if (Request::isHttpGet('lang')) {
if (Request::getHttpGet('lang') == 'ar-jo')
$language = 'ar_JO';
}else {
$language = 'en_US';
}
putenv("LANG=$language");
setlocale(LC_ALL, $language);
DEFINE('BASE_PATH', __DIR__ . DIRECTORY_SEPARATOR);
$path = BASE_PATH . 'locale';
$domain = 'words'; //this is the default text-domain
bindtextdomain($domain, $path);
// bind_textdomain_codeset($domain, 'UTF-8');
textdomain($domain);
bind_textdomain_codeset($domain, 'UTF-8');
the language files are located in core/locale/ar_JO/LC_MESSAGES words.mo words.po
How can i debug the issue because i think the problem from server not from a code ??
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
I have found the answer here :
https://stackoverflow.com/questions/5257519/cant-get-gettext-php-on-ubuntu-working
You debug the issue by talking to your web developer. The server (besides PHP version) is irrelevant.