hello,
I am trying to upload .mmf files on my server running Apache.
It neither uploading there nor on my local machine which is running on IIS.
I have a check before uploading and I am adding following lines into the array of allowed file types, I believe this is the correct mime type for mmf files.
'application/x-smaf' => 'mmf',
'application/vnd.smaf' => 'mmf',
IIS dont support mmf, I have to make the entry in supported mime types, so I do by taking help from here:
http://www.microsoft.com/technet/prodtechnol/windows2000serv/technologies/iis/maintain/featusability/mimeiis.mspx
But that doesn't made any difference.
Then I uploaded file on the server and thought that it would work there but seems Apache doesn't aware of it either. Any solution?