Magento 2.2.2 – Fix Admin Menu Not Working Issue

adminbackendjavascriptmagento2.2.2

Buttons on left admin menu does not react on mouse actions.

The error in console says

TypeError: Formatter is not a constructor

I tried

setup:static-content:deploy 

but nothing happens.

Best Answer

Are you using Windows os?

If yes then may be issue related symlink file,

please follow the below steps to fix the same…

1)Remove everything, except .htaccess file from pub/static folder

2)Open up app/etc/di.xml find the path “Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink” and replace to “Magento\Framework\App\View\Asset\MaterializationStrategy\Copy”

Note: Remove entire files and folder under pub/static except .htaccess file.

after run

php bin/magento setup:static-content:deploy -f

or for old magento2 version

 php bin/magento setup:static-content:deploy

i got same issue that time i was follow bellow

link

.

 http://www.dckap.com/blog/magento-2-admin-links-not-working-in-windows/
Related Topic