Hi,
I'm playing with grav for the first time. Attempted to port an existing blog with 2898 entries, generating item.md files, placing them in grav/user/pages/01.blog/X/ folders, using the Blog Site skeleton on my MacBook Air. The front page loads, but an individual page gives an error:
Maximum execution time of 30 seconds exceeded
Seems to hang on this code:
// compute score of content to content matches
if ($config['content_match']['process']) {
similar_text($page->content(), $item->content(), $score);
$content_matches[$item->path()] = intval($score);
}
Is there a cache initialization task I need to do first?
Thanks.