From fdebc24f3847812e3216fd67ab066d2fcae99623 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 17 Jan 2008 07:48:14 +0000 Subject: [PATCH] MDL-4218 Disabling the check for web root URL --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 983a4f664c4..e7af2c55a07 100644 --- a/install.php +++ b/install.php @@ -217,7 +217,7 @@ if ($INSTALL['stage'] == DIRECTORY) { error_reporting(0); /// check wwwroot - if (ini_get('allow_url_fopen')) { + if (ini_get('allow_url_fopen') && false) { /// This was not reliable if (($fh = @fopen($INSTALL['wwwrootform'].'/install.php', 'r')) === false) { $errormsg .= get_string('wwwrooterror', 'install').'
'; $INSTALL['wwwrootform'] = $INSTALL['wwwroot'];