Unlicensed Message

  1. #1

    Unlicensed Message

    Hello,

    I registered for a Pro License.
    I added the code on the global.asax
    I rebuild and published my web site on the remote server.
    When I call the login page (the first page of the site) I still have the Unlicensed message at the bottom right of the screen.
    I added the license information on the web.config file
    The problem remains...

    What can I do ?
    Thank you.
  2. #2
    Hi Yannis,

    I tested the exact license key string that was sent to you and it appears to validate correctly.

    My guess is the problem is created by a configuration or copy-paste issue in either the Web.config or Global.asax.

    The following code samples demonstrate two options for setting the license key.

    Example (Global.asax)

    Application wide within the Application_Start Event of your projects Global.asax file.

    void Application_Start(object sender, EventArgs e) {
    	this.Application["Ext.Net.LicenseKey"] = "LICENSE-KEY-HERE";
    }
    Example (Web.config)

    Application wide by adding to the Web.config file.

    <?xml version="1.0"?><configuration>
    	<configSections>
    		<!-- Add "extnet" configuration section to Web.config -->
    		<section name="extnet" type="Ext.Net.GlobalConfig" requirePermission="false" />
    	</configSections>
    
    
    	<!-- Add "licenseKey" config -->
    	<extnet licenseKey="LICENSE-KEY-HERE" />
    Hope this helps.
    Geoffrey McGill
    Founder
  3. #3
    Hi !

    Ok, I found the problem.
    I didn't why but I had set the property LicenseKey="" in the resourceManager !!

    I'm sorry.
    You can close the ticket.

    Yannis.
  4. #4
    Thanks for the update. We'll investigate and see if we can work around this problem.

    I'm glad to hear the problem has been solved.
    Geoffrey McGill
    Founder
  5. #5
    I faced the same problem now in ext 5.3
    and adding LicenseKey="" in the resourceManager
    solved the problem.

Similar Threads

  1. [CLOSED] [1.2] Unlicensed Ext Message
    By FVNoel in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 29, 2011, 2:24 PM
  2. [CLOSED] Geting rid of the unlicensed message
    By Bert76 in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 22, 2011, 5:04 PM
  3. [CLOSED] Ext.NET is Unlicensed Message
    By rmelancon in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 14, 2011, 1:03 PM
  4. [CLOSED] Ext.NET is Unlicensed
    By thchuong in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 22, 2011, 3:28 AM
  5. [CLOSED] Ext.NET is Unlicensed.
    By Suntico in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 03, 2011, 11:22 AM

Posting Permissions