CSS Caching and User-CUstomized CSS - Any Suggestions?
Posted
by Joe
on Stack Overflow
See other posts from Stack Overflow
or by Joe
Published on 2010-03-26T17:18:59Z
Indexed on
2010/03/26
17:23 UTC
Read the original article
Hit count: 533
I'm just trying to figure out the best approach here... my consideration is that I'd like my users to be able to customize the colors of certain elements on the page. These are not pre-made css they can choose from, but rather styles that can be edited using javascript to change the style, so they cannot be "pre-made" into separate style sheets. I am also generating the css into a cache directory since I am generating the css through a PHP script.
I am thinking that, perhaps I should:
1) If cached css file doesn't exist, create css file using the website default style settings.
2) If cached css file does exist, check if user has custom settings, if so, edit the cache file before displaying it.
Btw, when I refer to "cached file" I mean the PHP generated css document.
My goal is to prevent the need to have PHP re-generate the css file each time, whilst still allowing users, when logged in, to have their customized css settings applied. I will store these settings in a database most likely so when they return it is saved for them when they login.
© Stack Overflow or respective owner