Created
December 20, 2025 22:48
-
-
Save SirmaXX/3ef5470ada231f2bd6c3e8d2a4609b09 to your computer and use it in GitHub Desktop.
prestahsop 9.0.2 locale it-IT error solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Varsayılan dili Türkçe (tr-TR) yap */ | |
| UPDATE configuration SET value = 'tr-TR' WHERE name = 'PS_LOCALE_LANGUAGE'; | |
| /* Varsayılan ülkeyi TR yap */ | |
| UPDATE configuration SET value = 'tr' WHERE name = 'PS_LOCALE_COUNTRY'; | |
| /* Varsayılan dil ID'sinin 1 (Türkçe) olduğundan emin ol */ | |
| UPDATE configuration SET value = '1' WHERE name = 'PS_LANG_DEFAULT'; | |
| sudo apt-get install language-pack-it | |
| sudo locale-gen it_IT.UTF-8 | |
| sudo update-locale | |
| sudo systemctl restart apache2 | |
| cd /var/www/html/prestashopp/ | |
| sudo rm -rf var/cache/dev | |
| sudo rm -rf var/cache/prod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment