I have an application that allows users to select multiple PDF docs and then select to download all of them. The problem I having is the client using this site/application cannot unzip files once they are downloaded because of Win XP security settings. Apparently XP sees these files as risky. I can unzip the file using RAR but because the client is in a corporate environment, this is not an option.
I believe the problem lies in the manner in which PHP packages these files. For some reason the PDF docs are buried within multiple folders which must be the reason XP is choking.
Here is the path/folder structure generated by PHP once you download the zip file. c_/zips/106/1270081149/
I am trying to determine how to stop PHP from creating multiple folders and instead only create one folder which contain the actual PDF docs.
The site is running on Apache, with PHP5 and MySQL5.