Search found 6 matches

by Tomek
15 May 2019, 13:34
Forum: General Discussion
Topic: attachment size > 2GB
Replies: 4
Views: 3140

Re: attachment size > 2GB

No, the range is not limit. The file is correctly saved, but filesize in the table bug_file stores wrong filesize, so while downloading, filesize is incorrect, web browser will finish downloading after reading filesize bytes, so download is incomplete. filesize.{bug_file} is of type integer.
by Tomek
15 May 2019, 11:44
Forum: General Discussion
Topic: attachment size > 2GB
Replies: 4
Views: 3140

attachment size > 2GB

If attachment bigger than 2GB is uploaded to mantisbt the filesize in bug_file table is incorrectly stored, due to range of integer.
E.G. uploading 3GB bytes causes filesize to be max Int (2147483647)
by Tomek
08 May 2019, 16:45
Forum: General Discussion
Topic: phpmailer - certificates
Replies: 4
Views: 3418

Re: phpmailer - certificates

I would suggest in email_api.php at the end of section "case PHPMAILER_METHOD_SMTP:" $t_mail->sign(config_get_global('cert_filename'), config_get_global('key_filename'), config_get_global('key_pass'), config_get_global('extracerts_filename ')); And in config_defaults_inc.php /** * Path to ...
by Tomek
08 May 2019, 16:23
Forum: General Discussion
Topic: Dropzone timeout
Replies: 3
Views: 3141

Re: Dropzone timeout

Unfortunately not, because max_execution_time is for PHP and Dropzone is on the client side. Since whole (or part of the file till timeout) file is not uploaded the PHP script is not executed.
by Tomek
07 May 2019, 09:26
Forum: General Discussion
Topic: phpmailer - certificates
Replies: 4
Views: 3418

phpmailer - certificates

PHPMailer has options to sign mails with certifiacate, but mantis doesn´t support this option. Is this already planned? I think it is very small change.
by Tomek
07 May 2019, 09:23
Forum: General Discussion
Topic: Dropzone timeout
Replies: 3
Views: 3141

Dropzone timeout

How can one in config files increase timeout of uploading files in Dropzone? Now it is 30 seconds and if the file is pretty big, like 150 MB timeout is almost always exceeded, so it is unpossible to send big files now.