Hallo, wir erhalten im Backend beim Aufruf eines Artikels (Egal welcher, Cache x-fach geleert, Cookies gelöscht, aus und eingeloggt) folgende Fehlermeldung: Shopware 5.0.0 (Rev. 201504271122) - Backend (c) shopware AG iframe { border: 0 none !important; width: 100%; height: 100%; } #nav ul { top: 26px !important } #header li.main { height: 28px !important } .deprecated { color: #fff; font-size: 11px; font-weight: 700; text-align: center } .trusted-shops-icon { background: url(/engine/Shopware/Plugins/Default/Frontend/SwagTrustedShopsExcellence/Views/backend/trusted\_shops/images/trusted\_shops\_plugin.png) no-repeat 0 0 !important; } .sprite-briefcase--blue { background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiZJREFUeNqMUztvE0EQ/vbOd77YZ+zEiRWco0AgHrIQEo+fgEzJv6CAX0ARRZFAtGkpqegoCUoqCgrkVCFNEI6ESIGwFQn74nvtLrN76/iwXDDSamdnZ775ZnaWSSkxL6Xto/u09fRBGKOFB9lm52De18ICsVnYK7HRG1os2+qwkq313iJfKAbzy3+9L+dt1Vd7cpFvSdPYPNqlrcsYg+sOsLP2HUsvHRnHTZ2kXB6SrU+2TzLJViG5Lvuj2O481gAMovvw3h1EHPj94xTPv3loBRto3mxrAGV7dryE1kYbzeAyLMvC4cFhV/crrzlDmAqEoxDlRg1B45YOHI1GVCOD16jjyvIlSGroeDwmli5smeECgGUZeMqRpDEdmKYoJEccJYhocc4hRP4cKnvFr8Ai/wsAK4sRxzEiWurZkiRBSkG6UQRGMTowbzpDSn7sfFIASDhliugi1c9uEQvHtjHzyEU1WZidxwUGbEKIlKBK1FRWQVn/DIaIBr+0k7eyhsrKsg6cDp4IkyIAx+n++38HZHiMvRdd9Pt9PH33AVHzRj6VZvT8eH0GYE/OgWt3qe2DGUDZxqOdz7nevg3U12d3/irsrz8LPZgQHadCQb4p1sr11vVch9TTku8kLvlGhRJc6wy1WhWp50K9lqqVMVOrOWvqWpdwHIdm4SwHoMsgeLJ1Uv/y9qoU026bfyIMgamIgu7hRMUq17o+mo+I/xNu9uivAAMA2rQDjvYNo5UAAAAASUVORK5CYII=") no-repeat 0 0 !important; } .custom-grid-overflow .x-grid-view { overflow-x: auto !important; } Ext.editorLang = 'de'; Ext.shopwareRevision = '201504271122'; var userName = 'Thomas Stahl', maxParameterLength = '0'; Ext.define('Shopware.app.Application', { extend: 'Ext.app.Application', name: 'Shopware', singleton: true, autoCreateViewport: false, requires: ['Shopware.container.Viewport'], baseComponents: { 'Shopware.container.Viewport': false, 'Shopware.apps.Index.view.Menu': false, 'Shopware.apps.Index.view.Footer': false }, viewport: null, launch: function() { var me = this, preloader = Ext.create('Shopware.component.Preloader').bindEvents(Shopware.app.Application), errorReporter = Ext.create('Shopware.global.ErrorReporter').bindEvents(Shopware.app.Application) /\*\* \* Activates the Ext.fx.Anim class globally and \* drives the animations our CSS 3 if supported. \*/ Ext.enableFx = true; this.addEvents('baseComponentsReady', 'subAppLoaded'); // Disable currency sign Ext.apply(Ext.util.Format, { currencySign: '' }); // Fix default date format Ext.Date.defaultFormat = Ext.util.Format.dateFormat; this.callParent(arguments); this.addSubApplication({ name: "Shopware.apps.Index", controller: "Coupons", params: [], localizedName: 'Shopware', firstRunWizardEnabled: 0, sbpLogin: 0, updateWizardStarted: 1 }); // Start preloading the icon sets me.iconPreloader = Ext.create('Shopware.component.IconPreloader', { loadPath: "http://www.geniustvshop.de/themes/Backend/ExtJs/backend/\_resources/resources/css" }); }, /\*\* \* Checks if all base components are loaded and rendered. \* If truthy the preloader will be triggered. \* \* @param cmp - Component which calls the method \* @return void \*/ baseComponentIsReady: function(cmp) { var me = this, allReady = true; me.baseComponents[cmp.$className] = true; Ext.iterate(me.baseComponents, function(index, item) { if(!item) { allReady = false; return false; } }); if(allReady) { window.setTimeout(function() { me.fireEvent('baseComponentsReady', me); }, 1000); } } }); /\*\* Basic loader configuration \*/ Ext.Loader.setConfig({ enabled: true, disableCaching: true, disableCachingParam: 'no-cache', disableCachingValue: '1431955622+1+1' }); Ext.Loader.setPath('Shopware.apps', '/backend', '?file=app'); Ext.onReady(function() { var timeField = Ext.create('Ext.form.field.Time'); this.timeFormat = timeField.format; });
Woran kann das liegen? Grüße