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); } }