mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Merge pull request #10086 from nupplaphil/feat/install_testrewrite
Workaround for cURL troubles in container environments
This commit is contained in:
commit
d936cc5a5c
1 changed files with 4 additions and 3 deletions
|
@ -546,7 +546,6 @@ class Installer
|
|||
*
|
||||
* @param string $baseurl The baseurl of the app
|
||||
* @return bool false if something required failed
|
||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||
*/
|
||||
public function checkHtAccess($baseurl)
|
||||
{
|
||||
|
@ -563,14 +562,16 @@ class Installer
|
|||
|
||||
if ($fetchResult->getReturnCode() != 204) {
|
||||
$status = false;
|
||||
$help = DI::l10n()->t('Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess.');
|
||||
$help = DI::l10n()->t('Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess.') . EOL;
|
||||
$help .= DI::l10n()->t('In some circumstances (like running inside containers), you can skip this error.');
|
||||
$error_msg = [];
|
||||
$error_msg['head'] = DI::l10n()->t('Error message from Curl when fetching');
|
||||
$error_msg['url'] = $fetchResult->getRedirectUrl();
|
||||
$error_msg['msg'] = $fetchResult->getError();
|
||||
}
|
||||
|
||||
$this->addCheck(DI::l10n()->t('Url rewrite is working'), $status, true, $help, $error_msg);
|
||||
/// @TODO Required false because of cURL issues in containers - see https://github.com/friendica/docker/issues/134
|
||||
$this->addCheck(DI::l10n()->t('Url rewrite is working'), $status, false, $help, $error_msg);
|
||||
} else {
|
||||
// cannot check modrewrite if libcurl is not installed
|
||||
/// @TODO Maybe issue warning here?
|
||||
|
|
Loading…
Reference in a new issue