Updating to TCAdmin 2.0.121

Revision as of 12:59, 26 September 2018 by TCAWiki (talk | contribs) (Created page with " == Update to 2.0.121 when using IIS == If you have the built in web server disabled your Web.config will not get updated automatically. After updating you need to make these...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Update to 2.0.121 when using IIS

If you have the built in web server disabled your Web.config will not get updated automatically. After updating you need to make these changed to your TCAdmin2\ControlPanel\Web.config: - Find "<httpRuntime" and add this to that line:

requestValidationMode="2.0"

It should look like this:

<httpRuntime executionTimeout="3600" maxRequestLength="2097151" enableKernelOutputCache="false" requestValidationMode="2.0" />

- Find this line and remove it:

<add name="WebResourceCompressionModule" type="Miron.Web.HandlersAndModules.WebResourceCompressionModule"/>


Update your web site's application pool to ".NET v4.0 Classic" or ".NET v4.5 Classic". Give full permissions to "IIS APPPOOL\.NET v4.5 Classic" on C:\Program Files\TCAdmin2\Temp. Replace ".NET v4.5 Classic" with the name of your application pool.


Custom Themes (Windows only)

The generated HTML changes slightly after updating to .NET 4.0. Some custom themes might need updating. Remove ctl00_ from your custom CSS, header and footer. For example:

  1. ctl00_RadPanelbarSideBar

is now:

  1. RadPanelbarSideBar

Thanks to SuperNova for the tip. http://clientforums.tcadmin.com/showthread.php?t=12888

Retrieved from "https://help.tcadmin.com/index.php?title=Updating_to_TCAdmin_2.0.121&oldid=1492"