If you cannot see contents in frontpage then try the following.
In joomla folder: includes/Cache/Lite/Function.php
Replace:
$arguments = func_get_args();
with
$arguments = func_get_args();
$numargs = func_num_args();
for($i=1; $i < $numargs; $i++){
$arguments[$i] = &$arguments[$i];
}