Active
Project:
Node Images
Version:
6.x-2.1
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
15 Mar 2009 at 12:54 UTC
Updated:
29 Mar 2009 at 21:01 UTC
The node_images_file_limit variable has it's default value (1 MB) in node_images.module, but where and how can the site admin set this value?
Comments
Comment #1
adik commentedin image_upload.module:
variable_get('image_upload_uploadsize_default', 1)) * 1024 * 1024;
* 1024 * - value in bytes. Change it to 5120 to make 5Mb:
variable_get('image_upload_uploadsize_default', 1)) * 5120 * 1024;