Keine Bestellung mehr möglich - The provided X-CSRF-Token is invalid

Hi,

das wurde schon gefühlte 1000 Mal im Forum behandelt. Bitte in der config.php die Tokenvalidierung ausschalten:
 

 array(
        'username' => 'XXX',
        'password' => 'XXX',
        'dbname' => 'XXXXX',
        'host' => 'XXXXX',
        'port' => '3306'
    ),
    'front' => array(
    'throwExceptions' => false,
  ),
  'csrfProtection' => [
    'frontend' => false,
    'backend' => true
  ]
);