HI folks:
I've put in a support request to my hosting provider. but I thought i'd check here to see if I have mis-configured DNN somehow.
GOogle Pagespeed shows that I do not have browser caching enabled. So I used IIS Remote Mgr and reconfigured my site to support output caching of jpg, css, js, and png files.
<caching>
<profiles>
<add extension=".png" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".js" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
</profiles>
</caching>
Firefox/Firebug, on any JS, JPG, PNG, or CSS local file shows this: no-cache,public,max-age=86400
I cannot figure out why it appears that browser caching is not working. Does anyone have any recommendations?
(Note: I'm still waiting to hear back from my hosting provider's support. So i'm not sure if I've not configured it correctly in IIS or DNN.