X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FInstaller.php;h=b2b84c6182eaa76e3618c87463e21d4470631972;hb=55dda47f39f77537f0527ffd486003d15e77a850;hp=de75aa374f1333a1f4c51a1c265c3f69dceffcc5;hpb=992ffcc720a07bd389c04786cc6b00b179013f0f;p=friendica.git diff --git a/src/Core/Installer.php b/src/Core/Installer.php index de75aa374f..b2b84c6182 100644 --- a/src/Core/Installer.php +++ b/src/Core/Installer.php @@ -1,6 +1,6 @@ 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; } @@ -465,7 +465,7 @@ class Installer $status = $this->checkFunction('proc_open', DI::l10n()->t('Program execution functions'), - DI::l10n()->t('Error: Program execution functions required but not enabled.'), + DI::l10n()->t('Error: Program execution functions (proc_open) required but not enabled.'), true ); $returnVal = $returnVal ? $status : false;