What limits the size of the file to be imported?
I'm having to break my files into very small (less than 100kb) sizes and can't find what is limiting me? Everything looks good from my ISPs side of the house. I must have a setting off somewhere.

Connie

Comments

Robrecht Jacques’s picture

Status: Active » Fixed

See: http://drupal.org/node/97193 ?

Reopen if this did not solve your issue after trying the latest version.

stephenrobinson’s picture

There are 3 places you have this stuff set:

Your settings.php

ini_set('post_max_size', '64M');
ini_set('upload_max_filesize', '64M');

your .htaccess

post_max_size = 64M
upload_max_filesize = 64M

your php.ini/php5.ini

post_max_size = 64M
upload_max_filesize = 64M

stephenrobinson’s picture

Also check /admin/settings/uploads

Default maximum file size per upload
Default total file size per user

stephenrobinson’s picture

Oh also there is your apache server's httpd.conf

php_value post_max_size 100M 0
php_value upload_max_filesize 100M 0

caulyboy’s picture

.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.