Upload problems help please

Permalink
hi.

When using the multiple up loader in the file manager i get a message saying my files that i am uploading are too big so i checked the settings of my site:

The max upload size for my site was set to 2mb
so i added this to my htaccess file:

php_value upload_max_filesize 10M
php_value post_max_size 20M
php_value memory_limit 32M

now i dont get any "image is too big" messages but only 5 out of 20 images will be uploaded. the images that get uploaded say "upload complete" but the other 15 images just stay with the blue loading bar untill i get the newt screen showing me the images that have been uploaded in which 5 only show.

The failed images do get uploaded as i took a look in the files folder but something must be stopping them after upload.

does any one know how i can make this work? thanks. :)

chris123uk
 
mhawke replied on at Permalink Reply
mhawke
Not sure how to fix it but it seems like your session might be 'timing out'. You've raised your size limits but not your time limits. If you upload them individually, does it work?

You might also be trying to exceed your host's limits. They put max values on some of these parameters so we don't grab all the server resources for ourselves.

Perhaps this might help:

http://stackoverflow.com/questions/520237/how-do-i-expire-a-php-ses...
chris123uk replied on at Permalink Reply
chris123uk
using this is now working:

php_value upload_max_filesize 10M
php_value post_max_size 50M
php_value memory_limit 55M