Have client that is having problems uploading files via form from a Mac. They are uploading Jpeg and and the script is rejecting it as not a jpeg. They sent me the jpeg in question and I can upload it fine. Is there some Mac issue I need to address?
try: image/pjpeg
You can check exactly what file type it is by echoing
$image_type
where $image is the name of your file uplaod box
i.e. <input type="file" name="image">
With this knowledge you can allow for that image type in your script.