Hello,
Apparently solved the problem, I do not know if it was the right way.
In the file "config.class.php" inside the folder com_sobi2 on line 996 are:
else (
$ protocol = ((sobi2Config:: request ($ _SERVER, "SERVER_PORT", 0) == 443) | | sobi2Config:: request ($ _SERVER, "HTTPS", false))? "https": "http";
and moved to:
else (
$ protocol = ((sobi2Config:: request ($ _SERVER, "SERVER_PORT", 0) == 443) | | sobi2Config:: request ($ _SERVER, "HTTPS", false))? "http": "http";
I took the https, I do not know if it is safe to draw this, but solved the problem.
Regards,