Quote:
We dont' have a limit on the number of file uploads at a particular time that I'm aware of. I do believe such a limit would be in the php script
Create an empty file called php.info and in it write -
<?php print "PHP runs under the user: [" . system('whoami') . "]<br>"; phpinfo(); ?>
Put that file into your gallery2 folder , and then point your browser to it.
That will tell you who php is running under and give you information regarding the configuration of php core. In that you will find the post_max_size and the upload_max_filesize.
Its likely that those are set at 8mb for the post size limit and 2mb for the upload max filesize.
Take that phpinfo file out of the gallery folder btw .
When you use the upload in gallery it will reflect the settings of this php.ini in that it probably tells you no file larger than 2mb and max is 8mb.
Your host has to agree to change these settings if you dont have dirct access to the server settings , and its very likely they will not.
BTW Fred. I've only been at this for six weeks. I'm on a dedicated server so dont have these issues and my gallery is embedded now in drupal. I'm pretty sure of what I have posted , but I'm a newbie and learning all the time. I still think your prob is related to this , but it may be another setting in gallery that I haven't run across yet.
provisos provisos .....
kate