I just wanted to try grav by copyying the "Grav Base Files" to my webspace. There were two issues when I tried to load the web page.
1) An exception at problems.php at the following lines:
// delete any exising validated files
foreach (glob(CACHE_DIR . $validated_prefix . '*') as $filename) {
unlink($filename);
}
It was something like "... invalid argument passed to foreach statement ..."
When I commented out the foreach statement a second exception occured:
2) Whoops \ Exception \ ErrorException (E_WARNING)
Cannot set max_execution_time above master value of 30 (tried to set unlimited)
I commented out line 298 (set_time_limit(0);) and so I was able to load the web page.
(The first issue (foreach...) didn't show up again, when I uncommented the lines)
For explanations I would be very grateful!