When starting my server I got the warning 'no compatible framework was loaded, most features will not work'. I ensured that qb-core was started before ox_doorlock in my server.cfg. For debugging I did this,
`
SetTimeout(0, function()
local QB = exports[resourceName]:GetCoreObject()
and noticed that the print was logging to console after the warning. I was able to fix the issue by moving 'server/framework/*.lua', above 'server/main.lua', in the fxmanifest to try to make sure those files load first and that seems to work
When starting my server I got the warning 'no compatible framework was loaded, most features will not work'. I ensured that qb-core was started before ox_doorlock in my server.cfg. For debugging I did this,
` SetTimeout(0, function() local QB = exports[resourceName]:GetCoreObject()
`
and noticed that the print was logging to console after the warning. I was able to fix the issue by moving
'server/framework/*.lua',
above'server/main.lua',
in the fxmanifest to try to make sure those files load first and that seems to work