Keine Bearbeitungszusammenfassung Markierung: 2017-Quelltext-Bearbeitung |
Keine Bearbeitungszusammenfassung Markierung: 2017-Quelltext-Bearbeitung |
||
Zeile 1: | Zeile 1: | ||
{{Textbox|boxtype=important|header=Dateityp XML:{{Bsvs|bsvFrom=4.x+}}|text=Der Dateityp ''xml'' ist seit MW 1.39 auf der Blacklist und muss in ''LocalSettings.php'' erlaubt werden: | {{Textbox|boxtype=important|header=Dateityp XML:{{Bsvs|bsvFrom=4.x+}}|text=Der Dateityp ''xml'' ist seit MW 1.39 auf der Blacklist und muss in ''LocalSettings.php'' erlaubt werden: | ||
< | <syntaxhighlight lang="php"> | ||
$GLOBALS['wgProhibitedFileExtensions'] = array_diff( $GLOBALS['wgProhibitedFileExtensions'] ?? [], [ 'xml' ] ); | $GLOBALS['wgProhibitedFileExtensions'] = array_diff( $GLOBALS['wgProhibitedFileExtensions'] ?? [], [ 'xml' ] ); | ||
$GLOBALS['wgMimeTypeExclusions'] = array_diff( $GLOBALS['wgMimeTypeExclusions'] ?? [], [ 'application/xml', 'text/xml' ] ); | $GLOBALS['wgMimeTypeExclusions'] = array_diff( $GLOBALS['wgMimeTypeExclusions'] ?? [], [ 'application/xml', 'text/xml' ] ); | ||
</ | </syntaxhighlight>|icon=no}} |
Version vom 29. November 2023, 13:51 Uhr
Dateityp XML: v4.x++Der Dateityp xml ist seit MW 1.39 auf der Blacklist und muss in LocalSettings.php erlaubt werden:
$GLOBALS['wgProhibitedFileExtensions'] = array_diff( $GLOBALS['wgProhibitedFileExtensions'] ?? [], [ 'xml' ] );
$GLOBALS['wgMimeTypeExclusions'] = array_diff( $GLOBALS['wgMimeTypeExclusions'] ?? [], [ 'application/xml', 'text/xml' ] );