X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FInstaller.php;h=ea675097515e622473705743f9b671eaac398895;hb=f1b60414b38799eba0333115c9b07e2f0ed2d0c6;hp=de75aa374f1333a1f4c51a1c265c3f69dceffcc5;hpb=ed639045fb270f66b1c10c73e024c53f68e1a857;p=friendica.git diff --git a/src/Core/Installer.php b/src/Core/Installer.php index de75aa374f..ea67509751 100644 --- a/src/Core/Installer.php +++ b/src/Core/Installer.php @@ -133,9 +133,9 @@ class Installer $returnVal = false; } - if (!$this->checkHtAccess($baseurl)) { - $returnVal = false; - } + /// @TODO This check should not block installations because of containerization issues + /// @see https://github.com/friendica/docker/issues/134 + $this->checkHtAccess($baseurl); return $returnVal; }