Zum Hauptinhalt springen
Blog & News

Aktuelles & Updates von
Joomla, Wordpress und Co.

News, HowTos und Tutorials rund um Webdesign, Webentwicklung, Webhosting und Digitalisierung.

Blog & News

Prestashop mit Xampp

22.09.2026 · 2 Min Lesezeit

Prestashop auf einer lokalen XAMPP Installation zum Laufen bringen:

Oops... looks like an unexpected error occurred

Unknown locale code: it-IT

[PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException 0]

This error happens when the currency is in the ps_currency table but not in the ps_currency_lang table - at least not for the specified language.

The ps_currency_lang table was added in Prestashop version 1.7.6.0. Problems with it are typically the result of problems while upgrading from an older version. 

Adding entries into the database for each active language for each active currency is usually quite easy to do.

 

Erforderliche PHP-Einstellungen

Intl-Erweiterung ist nicht geladen

Stoppen Sie zuerst xampp / wamp und entfernen Sie dann bitte das Startsemikolon ( ; ) aus Ihrer xampp / php / php.ini mit dem folgenden Code.

;extension=php_intl.dll

Und dann starten Sie Ihre xampp / wamp neu.

 

Prestashop Datenbank manuell Upgraden

All the changes to apply have been defined in the install folder, running them can be done with a specific PHP script.

When you’re ready, run the file install/upgrade/upgrade.php.

This can be done with a browser, by reaching the address http://<shop_domain>/install/upgrade/upgrade.php, or from your server’s command line:

php install/upgrade/upgrade.php


Datenbankfehler bei Upgrade

class Order extends OrderCore { public static function generateReference() { $last_id = Db::getInstance()->getValue(' SELECT MAX(id_order) FROM '._DB_PREFIX_.'orders'); return str_pad((int)$last_id + 1, 9, '000000100', STR_PAD_LEFT); } }
Zurück zur Übersicht