Hello,
I had the same problem earlier this is what I did:
1: Check the permission for the folder which resides at may be Media/../category/product. If this is doesn't work.
====================================================================================
2:
Go to : lib/Varien/File/Uploader.php
//Log the output.
if( !is_writable($destinationFolder) ) {
//use either of the code
var_dump($destinationFolder);
// or
Mage::log($destinationFolder);
throw new Exception(''.$destinationFolder.'Destination folder is not writable or does not exists.');
}
=====================================================================================