Mimetype or Fileinfo extensions ... installed on server

give me other Fileinfo extensions Like ‘iso’ :wink:

[code]// Allowed extensions list in format ‘extension’ => ‘mime type’
// If myme type is set to empty string then script will try to detect mime type
// itself, which would only work if you have Mimetype or Fileinfo extensions
// installed on server.
$allowed_ext = array (

// archives
’zip’ => ‘application/zip’,

// documents
’pdf’ => ‘application/pdf’,
‘doc’ => ‘application/msword’,
‘scf’ => ‘application/vnd.ms-powerpoint’,
// executables
’exe’ => ‘application/octet-stream’,

// images
’gif’ => ‘image/gif’,
‘png’ => ‘image/png’,
‘jpg’ => ‘image/jpeg’,
‘jpeg’ => ‘image/jpeg’,

// audio
’mp3’ => ‘audio/mpeg’,
‘wav’ => ‘audio/x-wav’,

// video

‘mpeg’ => ‘video/mpeg’,
‘mpg’ => ‘video/mpeg’,
‘mpe’ => ‘video/mpeg’,
‘mov’ => ‘video/quicktime’,
‘avi’ => ‘video/x-msvideo’

);[/code]

I found this
commentcamarche.net/contents … /mime.php3
Are there other types?

We have analyzed the problem Thank you