My app on live server requests bootstrap fonts from an old published asset which existed on development machine and thus the fonts isn’t loaded.
I’m using combining-compressing-assets technique for production mode and everything works fin except the problem I already mentioned.
The problem only appears on production mode and on server.
Both production and development mode works without any problem on development machine.
Also development mode (without compressed and combined assets) works without any problem on server.
It might be there’s no permission problem because all assets generates in assets directory in development mode and even those are not included in combiner can publish their stuffs in asset directory.
Probably you already tried it but I suggest anyway.
Delete all files in assests directory
Delete all files from cache directory
till now never used the assets combining but I guess it use some files form cache for the process. Maybe you copied something from devel machine that create the problem.
I Combined and compressed the assets using "asset" command on server again. It publishes new assets according to the new compressed css and js files.
Combined and compressed files on development machine depends on their specified published assets. It’s important to know these published assets is generated during asset command procedure NOT loading the page.
My mistakes:
First of all I’d already did that before but a human mistake in creating asset config file made me miss the correct result.
Secondly, I thought there’s nothing to do with publishing assets when we use combining and compression approach and at least the asset bundles that are included in the config doesn’t publish new assets but it was a deadly mistake.
If somebody doesn’t believe in my words correct me, please.