Disable some server checks when running on HHVM

Ref https://github.com/owncloud/core/issues/10837#issuecomment-76516839
This commit is contained in:
Lukas Reschke 2015-02-28 10:08:41 +01:00
parent 42f6448da2
commit 4100610390
1 changed files with 34 additions and 26 deletions

View File

@ -608,6 +608,13 @@ class OC_Util {
$invalidIniSettings = []; $invalidIniSettings = [];
$moduleHint = $l->t('Please ask your server administrator to install the module.'); $moduleHint = $l->t('Please ask your server administrator to install the module.');
/**
* FIXME: The dependency check does not work properly on HHVM on the moment
* and prevents installation. Once HHVM is more compatible with our
* approach to check for these values we should re-enable those
* checks.
*/
if (!self::runningOnHhvm()) {
foreach ($dependencies['classes'] as $class => $module) { foreach ($dependencies['classes'] as $class => $module) {
if (!class_exists($class)) { if (!class_exists($class)) {
$missingDependencies[] = $module; $missingDependencies[] = $module;
@ -641,6 +648,7 @@ class OC_Util {
} }
} }
} }
}
foreach($missingDependencies as $missingDependency) { foreach($missingDependencies as $missingDependency) {
$errors[] = array( $errors[] = array(