0

enter image description hereI have fresh installation of magento 2. I am getting below error :

/pub/static/adminhtml/Magento/backend/en_US/jquery/jquery-ui-1.9.2.js

net::ERR_ABORTED 404 (Not Found)

Please help me to sort out this problem.

Charanjeet
  • 47
  • 2
  • 11

2 Answers2

3

I am also getting this error. My problem was solved by running the below command lines :

php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
Cladiuss
  • 1,271
  • 1
  • 14
  • 27
Divya Sekar
  • 1,473
  • 1
  • 22
  • 78
1

Go to the root folder of your Magento project and run the following commands :

  1. sudo php bin/magento setup:upgrade
  2. sudo php bin/magento setup:di:compile
  3. php bin/magento setup:static-content:deploy -f
  4. php bin/magento setup:static-content:deploy -f --theme Magento/backend
  5. sudo php bin/magento cache:clean
  6. sudo chmod -R 0777 pub var generated
Rakesh Donga
  • 5,344
  • 2
  • 24
  • 57