alexp999 Posted August 5, 2012 Posted August 5, 2012 I opened a support ticket after I found that CSS changes weren't visible on my site, despite there being an anti-cache hash. It seemed as though the hash was not changing even after re-caching the skin set, so I dug into the output class and found the following: $this->antiCacheHash = md5( IPB_VERSION . $this->settings['board_url'] . md5( $this->settings['sql_tbl_prefix'] . $this->settings['sql_pass'] ) ); Which means that its fairly pointless, as it will only realistically change when the site owner updates their board. The hash should change whenever the skin is updated. I had a look through the core caches, and we already have a cache entry for each skin in "skinsets" under "set_updated". I would imagine its a very simple change, that requires no extra queries, to have the timestamp of when the skin was last updated added to the hash, then whenever someone edits their skin files, changes will be reflected straight away as the hash will change.
AutoItScript Posted August 8, 2012 Posted August 8, 2012 I opened a support ticket after I found that CSS changes weren't visible on my site, despite there being an anti-cache hash. It seemed as though the hash was not changing even after re-caching the skin set, so I dug into the output class and found the following: $this->antiCacheHash = md5( IPB_VERSION . $this->settings['board_url'] . md5( $this->settings['sql_tbl_prefix'] . $this->settings['sql_pass'] ) ); Which means that its fairly pointless, as it will only realistically change when the site owner updates their board. The hash should change whenever the skin is updated. I had a look through the core caches, and we already have a cache entry for each skin in "skinsets" under "set_updated". I would imagine its a very simple change, that requires no extra queries, to have the timestamp of when the skin was last updated added to the hash, then whenever someone edits their skin files, changes will be reflected straight away as the hash will change. Did you get a fix for this? I've got the same issue.
alexp999 Posted August 8, 2012 Author Posted August 8, 2012 The only fix until its included in a future release will either be a code modification or hook. I was hoping me might get some input from IPS on it too, but I think I will have to look into writing my own hook for now.
alexp999 Posted August 9, 2012 Author Posted August 9, 2012 Made a free hook you can use, until this becomes part of IPB: Alex.
alexp999 Posted December 14, 2012 Author Posted December 14, 2012 For anyone coming across this later on, I'm pleased to say my hook is not needed for IPB 3.4.x, as IPS have implemented this fix themselves :)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.