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

MySQL Error Message: Access denied for user 'forgottenserver'@'localhost' (using password: NO)

DzDev

New Member
Joined
Mar 4, 2025
Messages
3
Reaction score
0
Hello!
1741265300158.webp


I have no idea where or why it is trying to log in with "forgottenserver." My config.lua is set to root, but it seems like it's ignoring my config.lua. Can someone help me?
 
Solution
I downloaded the latest version of tfs 1.7 and checked and it does indeed ignore the .env file. The same thing happens in version 1.6. I added the deleted lines with the database configuration to config.lua under "market" and above "misc" and surprisingly it worked.

LUA:
-- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "root"
mysqlPass = ""
mysqlDatabase = "tfs17"
mysqlPort = 3306
mysqlSock = ""

1741270850871.webp
I downloaded the latest version of tfs 1.7 and checked and it does indeed ignore the .env file. The same thing happens in version 1.6. I added the deleted lines with the database configuration to config.lua under "market" and above "misc" and surprisingly it worked.

LUA:
-- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "root"
mysqlPass = ""
mysqlDatabase = "tfs17"
mysqlPort = 3306
mysqlSock = ""

1741270850871.webp
 
Solution
I downloaded the latest version of tfs 1.7 and checked and it does indeed ignore the .env file. The same thing happens in version 1.6. I added the deleted lines with the database configuration to config.lua under "market" and above "misc" and surprisingly it worked.

LUA:
-- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "root"
mysqlPass = ""
mysqlDatabase = "tfs17"
mysqlPort = 3306
mysqlSock = ""

View attachment 90761
Dude, you're amazing! It worked! Thank you so much!
 
Back
Top