skip to Main Content

enter image description here]

I have an issue in magento 2.0. My admin page isn’t working properly. The buttons like products, customers, etc. are not working. The image link is provided. They are encircled with blue colour.

3

Answers


  1. Try to deploy the static content again and see if it fixes it:

    Run the following commands on the command line interface (make sure you are in the root magento directory)

    rm -Rf var/*
    
    rm -Rf pub/static/*
    
    php bin/magento setup:static-content:deploy en_US en_GB
    

    This will remove the old content version and recompile a new version. If the cause of your problem is a corruption / error in the static-content compliation this should solve it.

    Login or Signup to reply.
  2. Delete magento cache and then restart server.

    rm -rf ./var/cache
    service apache2 restart
    
    Login or Signup to reply.
  3. Search in app/etc/di.xml

    MagentoFrameworkAppViewAssetMaterializationStrategySymlink
    

    Replace with

    MagentoFrameworkAppViewAssetMaterializationStrategyCopy
    

    After saving

    • remove var/*
    • remove pub/static/*
    • deploy content

    That’s it

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search