1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Stud.IP-Konfigurationsfehler</title>
<script>
document.createElement("mark");
</script>
<style>
body {
margin: auto;
width: 40em;
font-family: Futura, "Century Gothic", AppleGothic, sans-serif;
}
p {
line-height: 1.5em;
margin-top: 1.5em;
margin-bottom: 1.5em;
}
mark {
display: inline-block;
background: #ffff88;
border: 1px dotted #888;
padding: 0.5em;
}
code {
font-family: "Monaco", "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
background-color: #f8f8ff;
padding: 0.5em;
line-height: 1.5em;
}
p code {
padding: 0;
background: none;
}
</style>
</head>
<body>
<h1>Fehler in der PHP-Konfiguration Ihrer Stud.IP-Installation</h1>
<p>
Für den Betrieb von Stud.IP bis zur Version 2.0 war es erforderlich,
die Konfiguration des PHP-Moduls Ihres Webservers anzupassen, damit
folgende Zeile – evtl. leicht verändert – enthalten ist:
</p>
<code>
auto_prepend_file = /usr/local/studip/lib/phplib/prepend4.php
</code>
<p>
Diese Konfigurationsoption wird für Stud.IP ab der Version 2.0 nicht mehr
verwendet.
</p>
<p>
<mark>
Entfernen Sie daher bitte die genannte Zeile aus Ihrer Konfiguration,
um diese Fehlermeldung zu verhindern.
</mark>
Typischerweise finden Sie diese in einer der folgenden Dateien:
<code>php.ini</code>, <code>httpd.conf</code> oder in einer
<code>.htaccess</code> Datei.
</p>
<p>
Wenn Sie dafür weitere Hilfe benötigen, besuchen Sie bitte das
Forum im
<a href="http://develop.studip.de/studip/seminar_main.php?auswahl=a70c45ca747f0ab2ea4acbb17398d370">Developer-Board</a>.
</p>
<p>
Vielen Dank, Ihre Stud.IP-CoreGroup
</p>
</body>
</html>
<?
exit();
|