siemka mam problem z since-db bo normalnie na lokalnym serwerze łączy mi się z mysql a jak odpalam serwer na server project to mam bład
ERROR: Could not load /clients/s111400/x64/dbconmy.so - /clients/s111400/x64/dbconmy.so: undefined symbol: ZSTD_compressCCtx[25-05-08 10] WARNING: [Cezary]/since-db/server.lua:27: Bad usage @ 'dbConnect' [Could not connect]
albo jeszcze taki sie pojawia jak coś zmieniam
[25-05-08 09] WARNING: [SinceRPG]/since-db/server.lua:41: Bad argument @ 'dbQuery' [Expected db-connection at argument 1, got boolean]
[25-05-08 09] WARNING: [SinceRPG]/since-db/server.lua:43: Bad argument @ 'dbPoll' [Expected db-query at argument 1, got boolean]
[lua]function getTime()
local time = getRealTime();
return time.hour..":"..time.minute
end
function getDate()
local time = getRealTime();
return (time.monthday).."-"..(time.month+1).."-"..(time.year+1900)
end
function saveInFile(name, text)
local file = nil
if fileExists("files/"..name..".txt") then
file = fileOpen("files/"..name..".txt")
else
file = fileCreate("files/"..name..".txt")
end
fileSetPos(file, fileGetSize(file))
fileWrite(file, "["..getDate().." "..getTime().."] "..text:gsub("#%x%x%x%x%x%x", "").."r")
fileFlush(file)
fileClose(file)
end
local connec... |