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
Comment #1
Robrecht Jacques commentedSee: http://drupal.org/node/97193 ?
Reopen if this did not solve your issue after trying the latest version.
Comment #2
stephenrobinson commentedThere 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
Comment #3
stephenrobinson commentedAlso check /admin/settings/uploads
Default maximum file size per upload
Default total file size per user
Comment #4
stephenrobinson commentedOh also there is your apache server's httpd.conf
php_value post_max_size 100M 0
php_value upload_max_filesize 100M 0
Comment #5
caulyboy commented.