You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it is a recognized issue? - see #220, which was for the Cake2x version but was never closed.
when timestamp=true in the ini file, and 'debug'=>true in the config/app.php the AssetCompress helper only looks for the non-timestamped versions of the files. The only way to get things to work properly is to set debug to false.
Actually now that I've tried to regen without the timestamp it still isn't working in debug. I'm not sure if there's a file left over somewhere that is interfering?
Running the ini without the timestamp setting and the app in debug is not loading the assets for me at all. Switching debug to false works immediately.
The text was updated successfully, but these errors were encountered:
Static assets are not used when debug mode is true. Generally the files are rebuilt on each request by the dispatcher filter. If the filter is not running, you won't get debug builds.
OK mark helped me on this, if anyone else runs into this issue ...
Bob reads the manual. Bob calls Plugin::load('AssetCompress', ['bootstrap'=>true]);. Chris forgets the bootstrap part. Don't be like Chris. Be like Bob.
I think it is a recognized issue? - see #220, which was for the Cake2x version but was never closed.
when
timestamp=true
in theini
file, and'debug'=>true
in theconfig/app.php
the AssetCompress helper only looks for the non-timestamped versions of the files. The only way to get things to work properly is to set debug tofalse
.Actually now that I've tried to regen without the timestamp it still isn't working in debug. I'm not sure if there's a file left over somewhere that is interfering?
Running the ini without the timestamp setting and the app in debug is not loading the assets for me at all. Switching debug to false works immediately.
The text was updated successfully, but these errors were encountered: