Remove check for safe_mode/open_basedir on extension downloader because it triggers...
authorMatthew Wire <mjw@mjwconsult.co.uk>
Thu, 11 Feb 2021 15:27:40 +0000 (15:27 +0000)
committerMatthew Wire <mjw@mjwconsult.co.uk>
Thu, 11 Feb 2021 15:36:57 +0000 (15:36 +0000)
CRM/Extension/Downloader.php

index a76ca105e1c4debd3edd295410edbd52f243a499..76f4a120bd8e781633f7089b2f3ffc1e116c1cb5 100644 (file)
@@ -71,11 +71,6 @@ class CRM_Extension_Downloader {
       );
     }
 
-    if (empty($errors) && !CRM_Utils_HttpClient::singleton()->isRedirectSupported()) {
-      CRM_Core_Session::setStatus(ts('WARNING: The downloader may be unable to download files which require HTTP redirection. This may be a configuration issue with PHP\'s open_basedir or safe_mode.'));
-      Civi::log()->debug('WARNING: The downloader may be unable to download files which require HTTP redirection. This may be a configuration issue with PHP\'s open_basedir or safe_mode.');
-    }
-
     if ($extensionInfo) {
       $requiredExtensions = CRM_Extension_System::singleton()->getManager()->findInstallRequirements([$extensionInfo->key], $extensionInfo);
       foreach ($requiredExtensions as $extension) {