Quantcast
Channel: DOCU - Foren
Viewing all articles
Browse latest Browse all 6596

Administration - Installation - Core: Setup ILIAS 5.2.2

$
0
0

Hi everybody,



I am trying right now to install ILIAS 5.2.2.


But when I am calling myip/ilias/setup/setup.php I am getting following message:


* @version $Id$ * * @package ilias-setup */ chdir(".."); define('IL_INITIAL_WD', getcwd()); require_once "./setup/include/inc.setup_header.php"; $setup = new ilSetupGUI();





When calling myip/ilias I am getting these messages:



* @version $Id$ * * @package ilias */ // jump to setup if ILIAS3 is not installed if (!file_exists(getcwd()."/ilias.ini.php")) { header("Location: ./setup/setup.php"); exit(); } // BEGIN WebDAV: Block WebDAV Requests from Microsoft WebDAV MiniRedir client. // We MUST block WebDAV requests on the root page of the Web-Server // in order to make the "Microsoft WebDAV MiniRedir" client work with ILIAS // WebDAV. // Important: If this index.php page is NOT at the root of your Web-Server, you // MUST create an index page at the root of your Web-Server with the same // blocking behaviour. If you don't implement this, the "Microsoft WebDAV // MiniRedir" client will not work with ILIAS. // You can copy the file rootindex.php for this. // Block WebDAV Requests from Microsoft WebDAV MiniRedir client. if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND' || $_SERVER['REQUEST_METHOD'] == 'OPTIONS') { $status = '404 Not Found'; header("HTTP/1.1 $status"); header("X-WebDAV-Status: $status", true); exit; } // END WebDAV: Block WebDAV Requests from Microsoft WebDAV MiniRedir client. require_once("Services/Init/classes/class.ilInitialisation.php"); ilInitialisation::initILIAS(); $ilCtrl->initBaseClass("ilStartUpGUI"); $ilCtrl->setTargetScript("ilias.php"); $ilCtrl->callBaseClass(); $ilBench->save(); ?>




What went wrong?


Kind regards,



Patrick



Viewing all articles
Browse latest Browse all 6596

Trending Articles