0

Yii2 $depends not loaded CSS and Js file.

public $depends = [
    'yii\web\JqueryAsset',
    'yii\web\YiiAsset',
    'yii\bootstrap\BootstrapAsset',      
];

Above code not load js and CSS file when page load.Please, anyone, help me to shoot this problem.

Getting following error

GET http://localhost/php/backend/web/assets/cb4e03a0/jquery.js net::ERR_ABORTED

login:668 GET http://localhost/php/backend/web/assets/e446c213/yii.js net::ERR_ABORTED

http://localhost/php/backend/web/assets/e446c213/yii.validation.js net::ERR_ABORTED

http://localhost/php/backend/web/assets/e446c213/yii.activeForm.js net::ERR_ABORTED

GET http://localhost/php/backend/web/assets/cb4e03a0/jquery.js net::ERR_ABORTED

GET http://localhost/php/backend/web/assets/e446c213/yii.js net::ERR_ABORTED

http://localhost/php/backend/web/assets/e446c213/yii.validation.js net::ERR_ABORTED

http://localhost/php/backend/web/assets/e446c213/yii.activeForm.js 404 (Not Found)

Insane Skull
  • 9,220
  • 9
  • 44
  • 63
Pramod kushwaha
  • 449
  • 6
  • 17

1 Answers1

3

I was found the issue in bootstrap version. Do the following step to solve these problems.

  1. Removed vendor folder from your project root directory
  2. Composer update
Pramod kushwaha
  • 449
  • 6
  • 17