• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows after create player people can't login

Mariuskens

Sword Art Online 2D-MMORPG
Joined
Nov 21, 2008
Messages
1,009
Reaction score
119
Location
Spain
GitHub
Olimpotibia
escusme after create player people can't login to the world.

please test it Pandoraserver.no-ip.org 7171/ 8.60 version.

but account sample i can login is strange no??

please help me fast
 
Your website and your database are not properly linked together ( im not 100% website savy) but im pretty sure its in ur websites config where u need ti put the server database name.
 
yes because account samples are premade, you need to fix the website linking to the DB if you enabled account manager peoplecould i think make an acc and log in aswell... Its a problem via your database connecting to your website
 
I just told you 3x, your database is not linking to your website!!! its linked to your server so you can log in because u have your account already, but noone can make a new acc because its not linked to your site
 
but is imposible dtabase is correct because when database linked to website you can make players , but when database not linked to website you can't make players...


so problem is this: login fine with account sample but new account not whyyyyyy??? xdxd
 
Take a look at the encryptionType and make sure that both server & website is using the same type. ^_^
 
in my modern account config.lua ( Database : Pandora )
and tfs config.lua: Mysql to xampp database pandora.

- - - Updated - - -

you can see i can enter with my god but others accounts no... :S
 
all thats telling me is your god account is made in the database correctly and the rest are not. enable account manager make a character with that and see if it allows you
sqlPort = 3306
sqlUser = "root"
sqlPass = ""
sqlDatabase = "theforgottenserver"
sqlFile = "theforgottenserver.s3db"

make sure your sqlfile matches on them both aswell

ALso as ninja said above, check your encryption types
 
see

LUA:
-- Database 
	sqlType = "mysql"
	sqlHost = "127.0.0.1"   
	sqlPort = 3306 
	sqlUser = "root"  
	sqlPass = "xxxx"   
	sqlDatabase = "pandora"   
	sqlFile = "pandora"   
	sqlKeepAlive = 0  
	mysqlReadTimeout = 10   
	mysqlWriteTimeout = 10  
	encryptionType = "sha1" 
	mysqlReconnectionAttempts = 3

ah sorry no need s3db in my old folder cant found xd

try this? but website ????

LUA:
-- Database 
	sqlType = "sqlite"
	sqlHost = "127.0.0.1"   
	sqlPort = 3306 
	sqlUser = "root"  
	sqlPass = ""   
	sqlDatabase = "dbname"   
	sqlFile = "dbname.s3db"   
	sqlKeepAlive = 0  
	mysqlReadTimeout = 10   
	mysqlWriteTimeout = 10  
	encryptionType = "sha1" 
	mysqlReconnectionAttempts = 3
 
please help!!!!!!!!!!

- - - Updated - - -

HELP ME PLESE WHEN YOU MAKE NEW ACCOUNT YOU CANT CONNECT TO THE WORLD BUT WHEN YOU LOGIN WITH 1/1 ACC MANAGER AND SAMPLES YOU CAN ENTER TO THE WORLD!!!! PLEASE HELP IS CRAZYYYYYYYYYY!!!

- - - Updated - - -

seee:S

 
encryptionType = "sha1"
Check in ur Website "phpmyadmin" if the encryption is sha1 And check in ur accounts the password and try to decrypt it from sha1 to plain then see
 
Can you find anything similar to this in system/application/controllers/account.php?
PHP:
$account->setPassword(sha1($_POST['password']));

It should be hashing passwords by default, or you could just try with another AAC. :p
 
try another aac
and use
encryptionType = "plain"
in your config.lua
dont use encrypted passwords since you are not experienced enough :)
 
encryptionType = "plain" = Can't login , Tibia.exe says: Password incorrect... so with 1/1 (Acc,samples..) you can enter to the world.

encryptionType = "SHA1"= Can't login , nothing massage intibia.exe (Server Offline)

try to reinstall xampp, Add database, Reinstall modern acc?
or? any ideaS?


AAh! so this:
$account->setPassword(sha1($_POST['password']));
NOT WORING..
 
Your config.lua is set to plain text more than likely, by default AACs give encrypted passwords.

- - - Updated - - -

try sha1 lowercase for encryptionType
 
Back
Top