Recently I've realized that users are having problems with the uJournal styles. It appears as if they are updating their styles, yet their style never updates. At least, that is how it seems. The style does change in the database properly, but apparently ljviews.pl (?) doesn't realize that the cached version in s1stylecache is old. We recently changed the server that the database runs on, and it was operating with an incorrect system time for while.
mysql> SELECT lastupdate, opt_cache FROM style WHERE styleid = "31950";
+---------------------+-----------+
| lastupdate | opt_cache |
+---------------------+-----------+
| 2003-04-04 22:10:41 | N |
+---------------------+-----------+
1 row in set (0.00 sec)
mysql> SELECT cleandate, opt_cache FROM s1stylecache WHERE styleid = "31950";
+---------------------+-----------+
| cleandate | opt_cache |
+---------------------+-----------+
| 2003-04-04 21:55:56 | N |
+---------------------+-----------+
1 row in set (0.06 sec)
Does anyone know what might be causing this? The above information is from a style that is displaying the cached version instead of the recently updated style.