The files are corrupted on download process, ¿could be by the ‘downloads’ control or ‘start_download’ function?
If you open the binaries with a text editor, notepad or kate, the header is displaced by the full path of the files in the server.
/var/www/.../.../.../files/ci_flv_player.zip
is at the start the header of the zip (/var/.../ci_flv_player.zipPK>>)
Something, the server or the php pushing the files are doing it.
If somebody have downladed it with this problem, it is very easy to fix the zip file in linux. You just need to use the command zip with -FF :
zip -FF 'ci_flv_player.zip' --out 'fixed_ci_flv_player.zip'
Fix archive (-FF) - salvage what can
zip warning: Missing end (EOCDR) signature - either this archive
is not readable or the end is damaged
Is this a single-disk archive? (y/n): y
Assuming single-disk archive
Scanning for entries...
copying: ci_flv_player/public/ (0 bytes)
copying: ci_flv_player/public/app/ (0 bytes)
copying: ci_flv_player/public/app/mediaplayer.swf (34363 bytes)
More...
After that, the fixed_ci_flv_player.zip contents can be extracted.
Thanks for the files.
Sorry about my poor english.