Who know how to repair this error

Who know how repair this error



If you’ve not made the scripts, ensure they’re being loaded in the correct order? Otherwise you’re going to need to look into the .lua files and see what’s going on I would assume.

Have you start the database? Looks like most of the errors are caused by mysql

1 Like

Screenshot_6
This just says “error connection refused” so be sure that mysql, mariadb or any sql server is started

Try this for the time out error

set mysql_connection_string "mysql://USER:PASSWORD@localhost/DATABASE?connectTimeout=60000&acquireTimeout=60000&timeout=60000"

or

{
    "user":"USER",
    "password":"PASSWORD",
    "host":"localhost",
    "port":3306,
    "database":"DATABASE",
    "connectTimeout":60000,
    "acquireTimeout":60000,
    "timeout":60000
}

Plus add to server.cfg

sets sv_projectName "A Project Name"
sets sv_projectDesc "A Project Description"

:love_letter: