UGCC and EzUGCC 2.00 Upgrade

Post Reply
Masher
Site Admin
Posts: 3612
Joined: Thu Apr 20, 2006 2:54 pm
Location: America's Heartland
Contact:

UGCC and EzUGCC 2.00 Upgrade

Post by Masher »

UGCC 2.00 moves everything to the .net 4.7 framework. The .net 3.5 framework was getting a little long in the tooth and doesn't support some newer web technologies, security (TLS 1.2) protocols, and third party products (MySQL connector), etc

Windows
Update .net framework: https://www.microsoft.com/en-us/downloa ... x?id=55167
If using IIS to host the panel, change your application pool setting to Framework Version 4.0

Linux users
Ensure mono is at least version 5.10 or higher

You'll also need to make some changes to your Web.config when upgrading to 2.00 due to the switch to .net 4.7.

UGCC and EzUGCC Web.config:
The Web.config can be found in the root of where the panel is installed. For EzUGCC this will be c:\where\you\installed\EzUGCC\UGCCPanel.
Modify the existing entries in between the <system.web> tags to match:
  • <compilation debug="false" defaultLanguage="c#" targetFramework="4.7" />
  • <httpRuntime requestValidationMode="2.0" executionTimeout="300" maxRequestLength="153600" />
Add this entry in between the <system.web> tags:
  • <pages controlRenderingCompatibilityVersion="4.0" />
These edits will improve performance and fix issues.

EzUGCC users, after you perform an upgrade, a new web.config will be generated at c:\where\you\installed\EzUGCC\new-web.config. You can copy this into the UGCCPanel directory and rename it web.config after comparing the settings of your old Web.config.
Masher
-----------
Please do not PM me unless asked to! We are a small company. If you have an issue or question it would be best to post it in the forums where it can help others in the future.

NEW Join our Discord!
Post Reply