Step 1.
In accordance with the generic article: How to diagnose a «Something went wrong.» failure? I have set breakpoints and found that the error message is generated here:
Magento_Ui/js/grid/provider::onError()
Step 2.
The error message is generated a s a response to the following request:
Magento_Ui/js/grid/provider::reload()
The request tries to access the following location via AJAX:
https://<my domain>/<my admin path>/mui/index/render/?namespace=notification_area&sorting%5Bfield%5D=created_at&sorting%5Bdirection%5D=asc&isAjax=true
It looks like the request location is wrong, because the server responds with the current page’s HTML, and then the jQuery code raises the error, because it expects the resonse to be a JSON, not HTML.
Step 3.
Obviously, the Magento_Ui/js/grid/provider
should not be loaded on an administrator’s account page at all, because there are no grids on an administrator’s account page.
Step 4.
It looks like the problem is caused by the Magento_AdminNotification
module: it tries to load its grid (with the backend notifications) on an administrator’s account page, and it is wrong.
This notification_area
UI component is absent in the Magento 2.1.x, it is new to Magento 2.2, and it looks like it is incorrect.
The notification_area
UI component was added on 2017-04-09 by the following commit:
https://github.com/magento/magento2/commit/14ab068c
Step 4.
The notification_area
UI component is loaded to the page in Magento 2.2 by the following layout rules:
As the layout file is named default.xml
, it is applied to the all backend pages.
It Magento 2.1.x the file is different:
https://github.com/magento/magento2/blob/2.1.6/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml#L10-L14