Yeah, I tried different browsers.
I'm not sure, but it looks like it might be an issue with setcookie in PHP 7.3+. I'm seeing other people online with similar error messages.
For example, in zp-core/zp-extensions/elFinder/php/elFinderSession.php, they do a version check for PHP 7.3 when setting their cookie.
Line 224:
if (version_compare(PHP_VERSION, '7.3', '<')) {
setcookie(session_name(), session_id(), 0, $cParm['path'] . (!empty($cParm['SameSite'])? '; SameSite=' . $cParm['SameSite'] : ''), $cParm['domain'], $cParm['secure'], $cParm['httponly']);
} else {
setcookie(session_name(), session_id(), $cParm);
}
In zp-core/functions-common.php, where most of the errors were coming from, it appears not to do that.
Line 500:
if (($time < 0) || !GALLERY_SESSION) {
setcookie($name, $cookiev, time() + $time, $path, '', $secure, $httponly);
}
I'm not a programmer, I'm just trying to help.