Hello Brian,
Sitefinity v3.1 uses the default maximum file upload size (4096 KB). That is why maxRequestLength attribute is not set explicitly in the project web.config file. But you can configure HTTP runtime settings by yourself. To achieve this you should add <httpRuntime> element in <system.web> section and set maxRequestLength attribute to the required value.
Regarding the example, it is valid for Sitefinity v3.2 and later and can be found in ~/Sitefinity/Admin/ControlTemplates/Generic_Content/EditorTemplate.ascx template. The same template in previous versions of Sitefinity is rather different because they use classic RadEditor control in contrast with v3.2 that is shipped with RadEditor for ASP.NET AJAX.
Also, note that to increase maximum file size for classic RadEditor in Sitefinity v3.1, you should open ~/Sitefinity/Admin/ControlTemplates/EditorConfigFile.xml file, find the following code and set the reguired values:
| <property name="MaxImageSize">204800</property> |
| <property name="MaxFlashSize">102400</property> |
| <property name="MaxMediaSize">5242880</property> |
| <property name="MaxDocumentSize">512000</property> |
| <property name="MaxTemplateSize">204800</property> |
Here is a KB article you can have a look at:
All the best,
Pepi
the Telerik team