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

I don't know what to edit!

Nirer

New Member
Joined
Aug 23, 2007
Messages
91
Reaction score
0
Location
Israel, How Unfortunate
I downloaded your server and now I created database and all.... I dont know how/what to edit in the config.lua...
when i go to my localhost/phpadmin
section, my username is: root
password: hello
the database is named "forgottenserver", i imported forgottenserver.sql into it, what do i edit in config.lua and how?
(paragraph 7 - windows)
 
-- MySQL
mysqlHost = "localhost"
mysqlUser = "root"
mysqlPass = ""
mysqlDatabase = "theforgottenserver"
mysqlPort = 3306

That's the MySQL part, if the password is hello which I hope was an example password since it's not smart to post it here, change
mysqlPass = ""
to
mysqlPass = "hello"

and

mysqlDatabase = "theforgottenserver"
to
mysqlDatabase = "forgottenserver"
 
and sqltype option isnt even there
 
It's under '-- SQL':
sqlType = "sqlite"

I guess the guide has to be updated to tell the user to edit that part aswell.
 
ok i found it and changed it do i need to change the password?
 
@up: the password must be the phpmyadmin password when you access it. In default it's Root but you should change that into something different, if you're using Xampp then you can go to: http://localhost/security and change it there.

(Everybody can access it if you didn't change your password, ofcourse they must know the ip)
 
Last edited:
well i changed it here so it matches the 1 from xampp

Code:
	-- MySQL
	mysqlHost = "localhost"
	mysqlUser = "root"
	mysqlPass = "mypassword"
	mysqlDatabase = "otserv"
	mysqlPort = 3306


but how about here this is what i mean

Code:
	-- SQL
	sqlType = "mysql"
	passwordType = "plain"
 
ok i put it back to plain everything seems like it works fine now
 
Back
Top