After you purchase a license for Image Uploader, you get one or several full license keys. Find here how to use them to remove limitations from the evaluation version.
What Is Full License Key
The full license key is a code associated with the domain name or IP address of the website where Image Uploader will be used (speaking more precisely - the address of the server you will submit files to). If the full license key matches the address you have provided us with, Image Uploader works as a full version, otherwise it will not work at all.
There are two licensing options available for Image Uploader:
- Single Domain License
-
Allows using Image Uploader at the single domain name you specified during activation.
Note
License key is generated for a full-qualified domain name, i.e. it works neither with other domains associated with the same site nor with any subdomains of this domain. The only exception is the www subdomain.
In other words, if you generate a license key for the yoursite.com domain, it will not be valid for subdomain.yoursite.com, but will be valid for www.yoursite.com.
You can also specify an IP address, but in this case users need to type this address in the navigation bar of their browser.
- Single IP License
-
Allows using Image Uploader with all domains associated with a specific IP address specified during activation.
![]() |
---|
If you need to host Image Uploader on one domain or IP address and upload images to another you should set full license keys for each one. To obtain additional license keys contact us at sales@aurigma.com. The instrustions how to specify two or more license keys are described in the Adding License Key section of this topic. |
Adding License Key
Upon the purchase you receive one or several full license keys. To remove limitation of the evaluation version you should insert them into the code among other parameters of the ImageUploader class as a value of the LicenseKey property. This means that the value of this property is specified along with general Image Uploader parameters as descibed in the Configuring Image Uploader topic.
![]() |
|
---|---|
iu.addParam("LicenseKey", "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"); |
Several license keys should be added as a single string separated with semicolon (i.e. ; character).
Correct:
![]() |
|
---|---|
iu.addParam("LicenseKey", "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX;YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY"); |
Incorrect:
![]() |
|
---|---|
iu.addParam("LicenseKey", "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"); iu.addParam("LicenseKey", "YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY"); |
![]() |
---|
Be careful when separating license keys with a semicolon. No whitespaces or other characters should be added before or after the semicolon. Otherwise, Image Uploader will not work. |