Hi,
Since you didn't specify, I assume you are using the newest version of mojoPortal 2.2.8.3. If that is not correct please specify.
If you are hosted in Medium Trust, in which case you are not using NeatUpload, you should look for this in comments near the bottom of system.web section of Web.config:
<httpRuntime maxRequestLength="2097151" executionTimeout="360" useFullyQualifiedRedirectUrl="true" />
You should uncomment it.
If you are in Full Trust and are using NeatUpload, then the settings of concern are these:
<neatUpload xmlns="http://www.brettle.com/neatupload/config/2008"
useHttpModule="true"
maxNormalRequestLength="4096"
maxRequestLength="2097151"
multiRequestUploadHandlerUrl="~/NeatUpload/MultiRequestUploadHandler.ashx"
>
</neatUpload>
If the web server is part of a domain, its possible the first setting is pushed down by group policy in which case changing the settings in Web.config will have no effect.
Hope it helps,
Joe