EasyiiCMS - Yii2 simple CMS

Hi Everybody,

I had been having a situation with changing the theme of the demo, i.e. the styling of the CMS frontend.

So for anyone else who could be a bit of a newbie like myself and strugling, as @auzadventure helped me with:

Add under AssetManager in the /config/web.php file, and add forceCopy =>true Like below:


'assetManager' => [

            // uncomment the following line if you want to auto update your assets (unix hosting only)

				//'linkAssets' => true,

			   'forceCopy' => true,  <-----------------------RIGHT HERE FOLKS


            'bundles' => [

                'yii\web\JqueryAsset' => [

                    'js' => [YII_DEBUG ? 'jquery.js' : 'jquery.min.js'],

                ],

                'yii\bootstrap\BootstrapAsset' => [

                    'css' => [YII_DEBUG ? 'css/bootstrap.css' : 'css/bootstrap.min.css'],

                ],

                'yii\bootstrap\BootstrapPluginAsset' => [

                    'js' => [YII_DEBUG ? 'js/bootstrap.js' : 'js/bootstrap.min.js'],

                ],

            ],

        ],