Martin Frei - 2015-12-29

Run in same issue.

Changed then CUploadedFile constructor in "..\crashfix\protected\components\BatchImporter.php" on line 209 and line 274.
from:

$debugInfo->fileAttachment = new CUploadedFile(
                                                $file, 
                                                $path,
                                                'application/zip',
                                                filesize($path),
                                                ''
                                                );  

to:

$debugInfo->fileAttachment = new CUploadedFile(
                                                $file, 
                                                $path,
                                                'application/zip',
                                                filesize($path),
                                                UPLOAD_ERR_OK
                                                );  

(Replaced '' by UPLOAD_ERR_OK)

hth