все просто

07 февраля 2022, 11:54

MasterDen

Это было просто скопированная инструкция по созданию…

Ошибка при открытии Tickets

При открытии тикета в логах выскакивает

(ERROR @ /connectors/index.php) Processor /var/www/site/public_html/core/model/modx/processors/getlist.php does not exist; 
Array ( [action] => getlist )

 В js админском необходимо заменить путь getlist на element/template/getlist, в MODx 2.3 поменяли пути процессоров

Файл лежит тут manager/assets/modext/widgets/resource/modx.panel.resource.js

,getMainRightFields: function(config) {
        config = config || {};
        return [{
            xtype: 'modx-combo-template'
            ,fieldLabel: _('resource_template')
            ,description: '[[*template]] +_('resource_template_help')
            ,name: 'template'
            ,id: 'modx-resource-template'
            ,anchor: '100%'
            ,editable: false
            ,baseParams: {
                action: 'element/template/getList'
                ,combo: '1'
                ,limit: 0
            }
            ,listeners: {
                'select': {fn: this.templateWarning,scope: this}
            }
        }

В версии 2.3.1 все пути указанны правильно и эта ошибка пропадает после обновление кэша браузера.

 

Источник: https://modx.pro/news/3459#comment-26901

Комментарии ()