Hello,

I want to attach large files (> 1Mb) to the biblio entries. The attachment does not succeed. I changed the settings of the File Upload module to 20 Mb per file, but this action has no effect...

Can somebody help me ?

Thanks,

Luc

Comments

danaktivix’s picture

Upload limit is not necessarily limited by Drupal or its modules. It's set for a particular instance of PHP in the php.ini file. If you have access to this, the variables are:

post_max_size = 2M
upload_max_filesize = 2M

I think if you increase the latter you have to increase the former. (That's the certainly the case when uploading sql scripts, but might not be for plain uploads that aren't to be executed.)

So also

http://drupal.org/node/71524

catdevrandom’s picture

Status: Active » Closed (fixed)