I added it ot my resources and when i tried to start the server, i got the following error: Assertion failed: m_marks.empty() (ā¦/ā¦/ā¦/components/citizen-server-impl/src/ResourceFilesComponent.cpp: ~MarkedWriter: 22)
any idea?
Its strange then. Without the stable resource my server starts just fine, but after adding it to the resources, i cant start it all, have the same error
CREATE TABLE IF NOT EXISTS `horses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(40) NOT NULL,
`charid` int(11) NOT NULL,
`selected` int(11) NOT NULL DEFAULT 0,
`model` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`components` text NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_horses_characters` (`charid`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4;
I get this error when trying to load the .sql file. (āzap600579-1ā is the username assigned to me by the server host.)
SQL Error (1044): Access denied for user 'zap600579-1'@'%' to database 'redemrp'
And the failed loading of the SQL file led to this in my live console:
[ERROR] [MySQL] [LRP_Stable] An error happens on MySQL for query "SELECT * FROM horses WHERE identifier='steam:110000105c8baaf' AND charid=1;": ER_NO_SUCH_TABLE: Table 'zap600579-1.horses' doesn't exist
Any ideas? Am I missing a password somewhere or something?
Ok, I figured out the SQL problem, but now when I enter the stable and open the store, no menu shows up and I have to use my Task Manager to close the game because it gets stuck. Someone else also had this issue and posted it on the github.
I started the resource on windows localhost and it does not says the error, but when i start it on my zaphost linux server, it crashes immediatly. probably the linux server version is not compatible with the resource, right?