• 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!

Xamp Error

bomba

Member
Joined
Feb 26, 2008
Messages
635
Reaction score
7
Location
Brazil
I have an error on impot my database.s3db to xamp:
imagem2qw3.gif

sqlType: Sqlite.
 
Code:
	-- Database
	-- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database.
	-- To disable sqlKeepAlive use 0 value.
	sqlType = "mysql"
	sqlHost = "localhost"
	sqlPort = 3306
	sqlUser = "root"
	sqlPass = ""
	sqlDatabase = "schema"
	sqlFile = "schema.mysql"
	sqlKeepAlive = 60
	passwordType = "plain"
 
Code:
	-- Database
	-- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database.
	-- To disable sqlKeepAlive use 0 value.
	sqlType = "mysql"
	sqlHost = "localhost"
	sqlPort = 3306
	sqlUser = "root"
	sqlPass = ""
	sqlDatabase = "schema"
	sqlFile = "schema.mysql"
	sqlKeepAlive = 60
	passwordType = "plain"

you have to change:
sqlPass = ""
sqlDatabase = "schema"


você precisa mudar:
sqlPass = ""
sqlDatabase = "schema"
 
I created a character in website but at the time that I connect to the server says there is invalid-account.
It seems that the server is not connecting with the website.
 
Code:
	-- Database
	-- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database.
	-- To disable sqlKeepAlive use 0 value.
	sqlType = "mysql"
	sqlHost = "localhost"
	sqlPort = 3306
	sqlUser = "root"
	sqlPass = ""
	sqlDatabase = "schema"
	sqlFile = "schema.mysql"
	sqlKeepAlive = 60
	passwordType = "plain"

in sqlpass you put your php myadmin pass.
in sqlDatabase you put the name of the table your using example in my i use ot

this is an example of how config should look
Code:
	sqlType = "mysql"
	sqlHost = "localhost"
	sqlPort = 3306
	sqlUser = "root"
	sqlPass = "[COLOR="Red"][B]your pass[/B][/COLOR]"
	sqlDatabase = "ot" <----- [B][COLOR="#ff0000"]your table base[/COLOR][/B]
	sqlFile = "forgottenserver.s3db"
	sqlKeepAlive = 60
	passwordType = "plain"
 
Last edited:
Don't work...
ps: I have 2 servers with website, the server 1 work but the server 2 no.
The server 2 I create an acc in website, I go enter in tibia with my acc and not exist.
 
Back
Top