ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
index.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13
// jump to setup if ILIAS3 is not installed
14
if
(!file_exists(getcwd() .
"/ilias.ini.php"
)) {
15
header(
"Location: ./setup/setup.php"
);
16
exit
();
17
}
18
19
// BEGIN WebDAV: Block WebDAV Requests from Microsoft WebDAV MiniRedir client.
20
// We MUST block WebDAV requests on the root page of the Web-Server
21
// in order to make the "Microsoft WebDAV MiniRedir" client work with ILIAS
22
// WebDAV.
23
// Important: If this index.php page is NOT at the root of your Web-Server, you
24
// MUST create an index page at the root of your Web-Server with the same
25
// blocking behaviour. If you don't implement this, the "Microsoft WebDAV
26
// MiniRedir" client will not work with ILIAS.
27
// You can copy the file rootindex.php for this.
28
29
// Block WebDAV Requests from Microsoft WebDAV MiniRedir client.
30
if
(
$_SERVER
[
'REQUEST_METHOD'
] ==
'PROPFIND'
31
||
$_SERVER
[
'REQUEST_METHOD'
] ==
'OPTIONS'
) {
32
$status =
'404 Not Found'
;
33
header(
"HTTP/1.1 $status"
);
34
header(
"X-WebDAV-Status: $status"
,
true
);
35
exit
;
36
}
37
// END WebDAV: Block WebDAV Requests from Microsoft WebDAV MiniRedir client.
38
39
40
require_once(
"Services/Init/classes/class.ilInitialisation.php"
);
41
ilInitialisation::initILIAS
();
42
43
$ilCtrl->callBaseClass(
'ilStartUpGUI'
);
44
$ilBench->save();
exit
exit
Definition:
login.php:28
ilInitialisation\initILIAS
static initILIAS()
ilias initialisation
Definition:
class.ilInitialisation.php:1225
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
index.php
Generated on Sat Apr 5 2025 22:01:13 for ILIAS by
1.8.13 (using
Doxyfile
)