problems uploading zips
Submitted by paxos2008 on Thu, 2008-07-17 18:00.
Hallo
1. of all great software.
2. I have Problems uploading zips -> the error message is "Not a zip file or not supported format! "
- System windows 2003 Server
- Apache 2
- PHP Version 4.3.11
- Zip support enabled
thx for your assistance

It is probably unsupported
It is probably unsupported ZIP format, try to find something about ZIP module in PHP and/or change your software with which you zip the files.
Other then that you can use FTP to upload multiple photos if you are familiar with FTP clients ...
problem solved
i changed line 1090 in setup.php
from
$zip=zip_open($local);
to
$zip=zip_open(realpath($local));
and it worked for me.