I've updated my testing server to PHP 7.2 and now all my F3 projects give me this answer:
session_cache_limiter(): Cannot change cache limiter when session is active
Now, I've searched the group and found one other person with this issue, but they did "session_start()" before calling F3. I don't.
What I do is call F3 via composer. I've tried a minimal example with the following steps:
1. Create empty directory
2. Call "composer require bcosca/fatfree"
3. Create an 'index.php' with the contents:
<?php
require_once('vendor/autoload.php');
$f3 = \Base::instance();
$f3->route("/",function() { echo "Hello world"; });
$f3->run();
Same error. I understand that not everyone uses Composer with Fatfree, but it's quite convenient and I would like to keep being able to use it. Moreover, I can not find any reference to "session" but inside the faftree code.
What can I do?