1
Hello!
In xoops 2.5.3 there's a cache bug. The key's not generated correctly.
File /class/cache/xoopscache.php line 291
le="color: #000000"><?php $key .= '_'.urlencode(XOOPS_URL);
should be replaced by
le="color: #000000"><?php $key = substr(md5(XOOPS_URL), 0, 8) . '_' . $key;