Magento – Magento 2.2.4: Module Manager not showing

component-managermagento2magento2.2.4web-setup-wizard

I have updated to Magento 2.2.4 from 2.2.3

Now the Module Manager module grid is not showing:

enter image description here

Google Chrome console shows

/setup/index.php/moduleGrid/modules:1
Failed to load resource: the server responded with a status of 500 ()

Microsoft Internet Explorer debugger shows

enter image description here

Does anyone know what may be causing this? Everything worked fine in 2.2.3.

Best Answer

setup/src/Magento/Setup/Model/Grid/Module.php

line 181

replace with

$item['moduleName'] = isset($item['moduleName']) ? $item['moduleName'] : $this->packageInfo->getModuleName($item['name']);

Always save copy of original file

Then refresh page (Module MANAGER) and should be working

Related Topic