Hello,
I'm using zziplib/php/apache/mysql for an app where the user uploads a zip file containing pdf's. zziplib
unzips them and updates each pdf into a blob in the database.
** the largest file that they can get to work is about 980K, containing about
15-20 pdf's... this appears to be working fine ...
** The script fails when the zip file is larger than this, even though php.ini has the following settings:
max_execution_time = 600
max_input_time = -1
post_max_size = 10M
upload_max_filesize = 10M
** the way it fails is it just dumps them back onto the upload page, without any error or notifications.
The ideal filesize would be about 10 megs and would contain about 200 pdfs.
Is this asking too much from zziplib, or php, or the server perhaps? Or could it be with the blob insertion?
Does anyone know offhand where the bottleneck might be?
Any ideas????
Thanks!!
Frizzo