Sean, you need to do the following:
Go to the ow_plugins/photo/controllers/ajax_upload.php
on line 95, you should see this code:
if ( !empty($file['file']['error']) ) { switch ( $file['file']['error'] )
right before switch enter this code:
OW::getLogger()->addEntry('Photo upload error: ' . $file['file']['error']);
so it should look like this:
f ( !empty($file['file']['error']) ) {OW::getLogger()->addEntry('Photo upload error: ' . $file['file']['error']); switch ( $file['file']['error'] )
after you do that, try to upload the photo again you'll get the error you posted.
after that go to ow_logs/error_log file and find the corresponding error. It will start with these words: Photo upload error: THE TEXT OF THE ERROR.
please provide the error you get.