Last edited: 18.11.2018 by johnfound, read: 7308 times
You can't set the file types. Everything can be attached. The file size limit is in the parameter max_attachment_size in the database. The default value is 1MB.
Insert it for the first time by:
insert into params values ('max_attachment_size', 1234567);
And change it by:
update params set val = 1234567 where id = 'max_attachment_size';
how can i set upload limits and file types for uploads.
You can't set the file types. Everything can be attached. The file size limit is in the parameter max_attachment_size in the database. The default value is 1MB.
Insert it for the first time by:
insert into params values ('max_attachment_size', 1234567);
And change it by:
update params set val = 1234567 where id = 'max_attachment_size';