Hi,
We will check it.
OK, do you have a view on when you will have reviewed this?
Thanks for the update.... when is that due out? Is there a preview version I can use?
I have resolved this aready myself.. please set as closed.
Added some middleware directives to the Startu.cs.
webBuilder.UseKestrel(options => { options.Limits.MaxRequestBodySize = long.MaxValue; });
Also in the main web module I added
services.Configure<FormOptions>(x => { x.ValueLengthLimit = int.MaxValue; x.MultipartBodyLengthLimit = int.MaxValue; // if don't set default value is: 128 MB x.MultipartHeadersLengthLimit = int.MaxValue; });
All of these are inline with the aspnet core docs, althought we wont be leaving the MaxValues in there.
@hikalkan does this work with the FileManager Pro-Module?
Can't upload large files and in the modern world, this makes the File Manager module almost worthless as a pro-module?
Hi @Mehmet
I am using version 4.2 and MVC razor pages
Thanks, this worked perfect.
Thanks for your help @Moyaoxiang, that clears a lot up.
How can I configure the DbContext to use a specific database connection string config name. By default it used "Default", but I want to tell it to use "Somethingelse" at run time. Not sure of this is an abp config or ef config.
Thanks... this is magical.
Feedback: These types of conventions would be really good to have documented somewhere