Hi.
I try to deal with unknown error during instalation and one warning. Please see attached pictures.
I can see from another topic, that I have to check the log in data/log directory for errors.
What do you think about the warning ?
I searched the code:
private function opcacheInvalidate(string $filepath, bool $force = false): void
{
if (!function_exists('opcache_invalidate')) {
return;
}
try {
opcache_invalidate($filepath, $force);
}
catch (Throwable $e) {}
}
And tried to comment the line 1174: @opcache_invalidate($filepath, $force);
There was no warning, but the error was still there.. Maybe the warning is not connected with the error..
Thanks.
Regards,
Georgio
I try to deal with unknown error during instalation and one warning. Please see attached pictures.
I can see from another topic, that I have to check the log in data/log directory for errors.
What do you think about the warning ?
I searched the code:
private function opcacheInvalidate(string $filepath, bool $force = false): void
{
if (!function_exists('opcache_invalidate')) {
return;
}
try {
opcache_invalidate($filepath, $force);
}
catch (Throwable $e) {}
}
And tried to comment the line 1174: @opcache_invalidate($filepath, $force);
There was no warning, but the error was still there.. Maybe the warning is not connected with the error..
Thanks.
Regards,
Georgio
Comment