Forum Moderators: open
I check for the filetype before allowing the upload. It seems that XLS files have one of two mime types:
"application/vnd.ms-excel"
"application/octet-stream"
I need to check for both of these so the file can be uploaded.
Why is that?
I created a csv file in excel...save as CSV. Then from my dev machine uploaded it and the content type was "application/octet-stream". If I simply just saved it as an xls then it would show "application/vnd.ms-excel"
Now, I take that csv file that was showing up as "application/octet-stream" and upload it to the site from another machine it would show up as "application/vnd.ms-excel".
I'm confused too.