Depending on the multi-file Torrent being downloaded, TorrentVolve is unable to ZIP the directory. No errors or warnings are output and a PclZip trace reveals nothing.
There seems to be no way around this bug right now. I will attempt to isolate this issue, but I am unable to fix it at this time.
The reason I cannot isolate the bug is that the PclZip trace does not even run in these particular cases. In any other case, the PclZip trace displays all of the information I need to know.
The issue could have something to do with special characters in the folder names, so I will look into this next.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=1622394
Originator: YES
There seems to be no way around this bug right now. I will attempt to isolate this issue, but I am unable to fix it at this time.
The reason I cannot isolate the bug is that the PclZip trace does not even run in these particular cases. In any other case, the PclZip trace displays all of the information I need to know.
The issue could have something to do with special characters in the folder names, so I will look into this next.
Logged In: NO
I was able to fix this by changing this:
//populate ZIP archive
fillZipArchive(&$zipFile, $filePath);
to this:
$zipFile->create($filePath, PCLZIP_OPT_REMOVE_ALL_PATH);
Jesse Thouin
torrentvolve-jt23@sneakemail.com
Logged In: NO
Forgot to mention the file is download.php.
Jesse Thouin
torrentvolve-jt23@sneakemail.com