I had a strange situation: when i was logged out and simplecache was diabled, no CSS was loaded. The site looked like ugly.
But i found a workaround:
In
\engine\start.php
i added the lines at the very end:
// Force simplecache update if simplecache is disabled
if (!($CONFIG->simplecache_enabled)) {
datalist_set('simplecache_enabled',1);
elgg_view_regenerate_simplecache();
}
Perhaps this can help someone else!
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Evan Winslow@ewinslow
Evan Winslow - 0 likes
You must log in to post replies.You can usually force that code to run by running /upgrade.php. No need to hack core.