Categories
General IIS Ripplestone Ripplestone Tips

How to Change the File Upload Size in Ripplestone

When you publish a Crystal Report file or document to Ripplestone you are moving the physical file from the local storage to the web server. Ripplestone has a default file size of 10 MB, so report files that are larger than 10 MB will not upload.

This size can be changed in the web.config file located in C:SitesRipplestone. The web.config file is an XML file that can be edited with any text editor or XML reader. Look for the httpRuntime section and change the maxRequestLength to whatever value you would like (1024 = 1MB).

Below is an example of the httpRuntime section with the default values that come with Ripplestone.

<!—Sets the max size for file uploads: 102400 = 10MB and 3600 = 1 hour –>

<httpRuntime maxRequestLength="10240" executionTimeout="900" requestValidationMode="2.0"/>

Categories
IIS Ripplestone Ripplestone Tips

Changing the Timeout Within Ripplestone

Ripplestone has a default timeout period of 20 minutes. If the application has not been used for 20 minutes, the session will end and the user will need to login again to continue. The default value can be changed by editing the web.config file located in C:SitesRipplestone. The web.config file is an XML file that can be edited with any text editor or XML reader. Look for the authentication section and change the timeout to whatever value (in minutes) you would like.

Below is an example of the authentication section with the default value of 20 minutes.

<authentication mode=”Forms”>

<forms name=”RSAuth” loginUrl=”SignOn.aspx” protection=”All” timeout=”20″/>

</authentication>