• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC Znote - SSL Handshake failed

Rene Lima

New Member
Joined
Jul 20, 2017
Messages
6
Reaction score
1
Hello guys,
This is my first post, so excuse me if I'm doing it in the wrong place ...

I'm getting this error when I try to log in with client 11.3 on the server I hosted in VPS.
uDtOjVQ.png


I did not find anything about this error in the forum ... Just a mention of @comedinha in another post, but it did not solve my problem.

Can someone help me? ^^ Thx thx
 
Solution
in config.php, make sure TFS version is set to TFS_10 (not TFS_13)

And make sure that gameserver details are correct. (like the ip, port, server name must be identical to config.lua)
kiwRds1.png



This was a setup that was before posting. So you have that SSL error.
Without the ': 80' in client.exe it does not connect with VPS.
Can it be any restrictions on connection to VPS?

Note: In the localhost of VPS i can access the website, create an account, etc ... Through the browser on my pc, can access the localhost of VPS using xxx.xxx.xx.xx: 80 / index.php
 
https = ssl (which defaults to port 443)
http = standard web (which defaults to port 80)

https://IP:80 = ssl through the regular port 80. This is what confuses the web server.

The web server recieved an SSL request through its regular web protocol, so it does not expect any SSL request. Either way your web server probably don't have SSL hosting installed.

Just replace https with http in your loginWebService in client.exe, and remove :80. (You only need to specify which port to connect to, if it is not through the default one).
loginWebService=http://100.214.08.12/login.php
 
Thanks dude!!! It's work!
But i have another problem now... After Char Window (yes, char list shows)
v95FKnZ.png

NOTE: Server is online, OT client can access normaly.
 
in config.php, make sure TFS version is set to TFS_10 (not TFS_13)

And make sure that gameserver details are correct. (like the ip, port, server name must be identical to config.lua)
 
Solution
Back
Top