All my website is without styles even the administration zone. I have tried with both available versions. I have checked and my aggregations and clean url are enabled. Cleaned the cache after enable it as suggested and nothing changed, all is white.

Comments

IWasBornToWin’s picture

Any way you could answer this "critcial" issue? Makes me want to uninstall this module immediately.

warmth’s picture

I disabled it!

catch’s picture

Status: Active » Postponed (maintainer needs more info)

This needs more information:

- are clean URLs enabled?

- are you seeing filenames rendered in the HTML document?

- what happens with the request for the aggregate files if so - 404? 403? 500?

Ivan_Dagreat’s picture

Issue summary: View changes

I had this same issue. But its not just css, its js also. Every aggregated file returns a 404.
- Clean URLs are on
- Filenames Look Normal (js_3TykeRWpejhD4-J3vdlaNXdULg9xhOZhbsppK0o2bUs.js)

nwom’s picture

I'm getting the same issue, but I'm wondering if it's a Radix Bootstrap/Bootswatch theme incompatibility.

aaron.ferris’s picture

Seeing the same issue:

- are clean URLs enabled? Yes

- are you seeing filenames rendered in the HTML document? Yes

- what happens with the request for the aggregate files if so - 404? 403? 500? - 404

Digging into this a little, it appears, at least in my implementation that agrcache_generate_aggregate() is never actually being called, so the files aren't created, hence the 404.

In my case it was a fast_404 setting causing this (even with '404_fast_paths_exclude' configured as per the module instructions):

$conf['fast_404_exts'] = '/\.(png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';

For anyone else noticing the same issue, it would be worth checking these settings in settings.php or wherever they're set.