• 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 [CANARY] Wrong Password when using login.php

Ridjin

New Member
Joined
Dec 17, 2014
Messages
21
Reaction score
3
1688935597688.png

The problem only occurs locally.

  • Win 11
  • Xampp
  • Canary protocol 13x

There is no problem creating accounts
But it always gives incorrect password error when trying to login.
Consequently, it is also not possible to login via tibiaclient, as it uses login.php to login.

I can login via Otclient normally.

Already tried:

  • Xampp PHP 7.4
  • Xampp PHP 8.0
  • Xampp PHP 8.1
  • Xampp PHP 8.2
  • Gesior
  • MyAAC
  • CanaryAAC
Nothing worked.

To make sure I wasn't doing something wrong, I created a VPS on Google Cloud Platform, compiled Canary there, and was able to log in to the MyAAC and CanaryAAC website normally. And I was also able to connect through tibiaclient.


Does anyone know how to solve this problem?
Does it have anything to do with Windows 11?
 
Maybe you are using sha1 encryption
In your config.lua
Code:
encryptionType = "sha1"

to

Code:
encryptionType = "plain"

but create another account or fix it in your database
 
Maybe you are using sha1 encryption
In your config.lua
Code:
encryptionType = "sha1"

to

Code:
encryptionType = "plain"

but create another account or fix it in your database
The problem occurs in website login, but your idea solves my problem in parts haha

i change all auth in website to Plain, and works very well (no problem with security because is only local env)
 
Back
Top