This repository has been archived by the owner on Apr 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
Update den-live-server-konfigurieren.md #484
Open
Physiklehrer
wants to merge
4
commits into
contao:4.4
Choose a base branch
from
Physiklehrer:patch-1
base: 4.4
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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| | ||
| Rechte PHP-Prozess: |\- | Symlinks anlegen und folgen | Symlinks anlegen und folgen| | ||
| |\- | Dateien anlegen und ändern | Dateien anlegen und ändern| | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. There was a problem hiding this comment. Choose a reason for hiding this commentThe 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...) There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
@@ -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 | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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 ;).There was a problem hiding this comment.
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...
There was a problem hiding this comment.
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 nurindex.html
: https://httpd.apache.org/docs/2.4/mod/mod_dir.htmlNatürlich haben vermutlich alle Hoster einen anderen Wert gesetzt.