Skip to content
This repository has been archived by the owner on Apr 21, 2021. It is now read-only.

Update den-live-server-konfigurieren.md #484

Open
wants to merge 4 commits into
base: 4.4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 30 additions & 18 deletions manual/de/01-installation/den-live-server-konfigurieren.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,22 @@ und PHP 5 aktiviert.

### Contao-Systemvoraussetzungen

Contao benötigt einen Webserver wie Apache oder IIS mit PHP- und MySQL-Support.

| Software | Version (min.) |
|----------|----------------|
| PHP | 5.6.0 |
| MySQL | 5.0.3 |


Außerdem benötigen Sie verschiedene PHP-Erweiterungen, um von allen Funktionen
profitieren zu können.

| PHP-Erweiterungen | für | Pflicht |
|--------------------------|------------------------|---------|
| GD, Imagick oder Gmagick | Bildbearbeitung | Ja |
| DOM | XML-Dateien | Ja |
| intl | Internationalisierung | Ja |
| mbstring | internationale Zeichen | Nein |
| mcrypt | Verschlüsselung | Nein |
#### Systemvoraussetzungen Kernsystem (manuelle Installation)

Contao benötigt einen Webserver wie Apache oder IIS mit PHP- und MySQL-Support
sowie verschiedene PHP-Erweiterungen.

|Contao-Version | 3.5 LTS | 4.4 LTS | 4.5 |
|---------------------|-------------------------|------------------------------|-------------|
| PHP ab Version: | 5.4.0 | 5.6.0 | 7.1 |
| MySQL ab Version: | 5.0.3 | 5.0.3 | 5.5.7 |
| PHP-Erweiterungen: | GDlib (Bildbearbeitung) | GD, Imagick oder Gmagick | GD, Imagick oder Gmagick|
| | DOM (XML-Dateien) | DOM (XML-Dateien) | DOM (XML-Dateien)|
| |\- | intl (Internationalisierung) | intl (Internationalisierung)|
| | | Umleitung auf app.php | Umleitung auf app.php|
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dann müsstest du aber auch schreiben Umleitung auf index.php bei Contao 3 ;).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

naja, zumindest der Apache, den wohl die meisten verwenden, interpretiert die index.php im Gegensatz zur app.php automatisch. Aber es kann gerne auch raus...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nein, der default Wert von DirectoryIndex ist nur index.html: https://httpd.apache.org/docs/2.4/mod/mod_dir.html
Natürlich haben vermutlich alle Hoster einen anderen Wert gesetzt.

| Rechte PHP-Prozess: |\- | Symlinks anlegen und folgen | Symlinks anlegen und folgen|
| |\- | Dateien anlegen und ändern | Dateien anlegen und ändern|
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Contao 3 muss natürlich genau so Dateien & Ordner anlegen und ändern können.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

das ist habe ich aus den Contao-News und bezieht sich wohl auf den weggefallenen Safe Mode Hack (der aber natürlich sowieso noch nie empfehlenswert war...)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ach so ja, da hast du natürlich recht.

| DocumentRoot |\- | Auf Ordner "web" setzen | Auf Ordner "web" setzen|

> #### info:: Hinweis
> Je nach installierten Extensions kann es außerdem notwendig sein die PHP
Expand All @@ -35,6 +33,20 @@ profitieren zu können.
Contao wurde erfolgreich in allen modernen Browsern wie Firefox oder Internet
Explorer (ab Version 9) getestet.

#### Systemvoraussetzungen Composer-Paketverwaltung: Kommandozeile und Contao-Manager

Zusätzlich zu den Systemvoraussetzungen des Kernsystems:

- ausreichend Arbeitsspeicher (RAM) für Konsolenbefehle, ggf. mehrere GB
- lange Skriptlaufzeit für Konsolenbefehle
- PHP Phar-Erweiterung
- PHP cURL-Erweiterung
- PHP OpenSSL-Erweiterung
- PHP-Flag "allow_url_fopen" aktiv
- PHP-Funktionen "proc_open" und "proc_close"
- Für Kommandozeilenzugriff: SSH-Zugang



### Der Contao-Check

Expand Down