About Store Forum Documentation Contact



Post Reply 
License server refusing to validate license
Author Message
Brendan Offline
Member

Post: #1
License server refusing to validate license
I copy and pasted the license from the download section that I was given when prompted it. The error message I receive is "Received an invalid confirmation code from the Esenthel Authentication Server. Please make sure that your computer has a correct date,hour and time zone set.".

I am also unable to log into the store page of the editor with my login credentials.. It states "Invalid Password. Please make sure that your computer has a correct date,hour and time zone set."

Obviously I've made sure that the license code I entered was correct, my password is correct, and my time settings are accurate. Unless I have missed something, It would appear that either your license server is down, or I am simply having trouble connecting to it.

Thanks
-Brendan
07-01-2015 04:07 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: License server refusing to validate license
Hello,

Thank you for your purchase.

You must have wrong time/date set on your computer.

Code:
/******************************************************************************/
void InitPre()
{
   EE_INIT();
}
bool Init()
{
   return true;
}
void Shut()
{
}
bool Update()
{
   if(Kb.bp(KB_ESC))return false;
   return true;
}
void Draw()
{
   D.clear(TURQ);
   DateTime dt; dt.getUTC();
   D.text(0, 0, S+dt.asText());
}
/******************************************************************************/

Must match what you see here:
https://www.google.co.nz/webhp?sourceid=...utc%20time


Attached File(s)
.zip  UTC Time.zip (Size: 798 bytes / Downloads: 3)
07-01-2015 04:30 AM
Find all posts by this user Quote this message in a reply
Brendan Offline
Member

Post: #3
RE: License server refusing to validate license
I got it working, thanks
07-01-2015 11:20 PM
Find all posts by this user Quote this message in a reply
Post Reply