roundcube installation error. Mimetype to file extension mapping: NOT OK

4.2k views Asked by At

I'm trying to install Roundcube 1.4.9 on the windows server 2019 with IIS 10.0

in step 3 everything is OK except Mimetype to file extension mapping.
Test filetype detection
Fileinfo/mime_content_type configuration:  OK
Mimetype to file extension mapping:  NOT OK

I've tried to set path of mimetypes.php in conf.inc.php like this:

$config['mime_types'] = 'c:/inetpub/wwwroot/roundcube/config/mimetypes.php';

and still not working.

1

There are 1 answers

2
Mohammad Salehi On BEST ANSWER

the problem was that I had to download mime.type from http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types and conf.inc.php should be like this:

$config['mime_types'] = 'c:/inetpub/wwwroot/roundcube/path/to/mime.types';