Hi, I'm using latest CVS version of drupal and attachment.
Attachment does not handle big file? I selected a 3Mb pdf file, it starts trying to upload it, but after some time it fails and I get the error: no file selected.
Thanks
Hi, I'm using latest CVS version of drupal and attachment.
Attachment does not handle big file? I selected a 3Mb pdf file, it starts trying to upload it, but after some time it fails and I get the error: no file selected.
Thanks
Comments
Comment #1
nicholasthompsonI'm getting the same error using the CVS version on my site and the file is only 2.25Mb... Any idea's? Could be a PHP limit - I'm gonna go play with that now.
Comment #2
nicholasthompsonConfirmed - this is not a bug with Attachment, just a default setting with PHP.
http://uk2.php.net/manual/en/ini.core.php#ini.upload-max-filesize
To fix, I added the following line to my sites .htaccess file...
php_value upload_max_filesize 8M
8Mb should be enough for now ;-)