Manual:$wgMimeDetectorCommand/pl

From mediawiki.org
This page is a translated version of the page Manual:$wgMimeDetectorCommand and the translation is 25% complete.
MIME types: $wgMimeDetectorCommand
Sets an external MIME detector program.
Wprowadzono w wersji:1.5.0
Usunięto w wersji:nadal w użyciu
Dozwolone wartości:nie określono
Domyślna wartość:null

Szczegóły

Sets an external MIME detector program. The command must print only the MIME type to standard output. The name of the file to process will be appended to the command given here.

If this setting is not set, the PHP fileinfo extension will be used, or if that is unavailable, the PHP function mime_content_type() will be used.

It is important to note that MediaWiki itself performs a set of MIME detection tests itself, and only if those are unsuccessful is the MIME detector invoked. See Manual:MIME type detection for more information about this whole process. Zobacz też Manual:Configuring file uploads .

Przykład (Linux):

$wgMimeDetectorCommand = "file --brief --mime";

or shortly,

$wgMimeDetectorCommand = "file -bi";