All of the logfiles are emptyWhat errors do you have in the logs folder in your emulator?
It's probably something like a missing value in your rooms table or something, could be a missing column in a table etc.
Check your rooms table, is there blank entries?All of the logfiles are empty
Gonna PM youRooms table is blank
ALTER TABLE `rooms` CHANGE `allow_pets` `allow_pets` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_pets_eat` `allow_pets_eat` INT(1) NOT NULL DEFAULT '0', CHANGE `room_blocking_disabled` `room_blocking_disabled` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_hidewall` `allow_hidewall` INT(1) NOT NULL DEFAULT '0', CHANGE `mute_settings` `mute_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `ban_settings` `ban_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `kick_settings` `kick_settings` INT(1) NOT NULL DEFAULT '1';
already ran that query and it didnt workPaid/Private Help:
You are not allowed to offer (or ask) private help. Such things include: help over Teamviewer, help over PM (/conversations), join.me, etc. Make sure you keep everything inside the thread, so it helps future members with the same problems to fix it. When you see someone asking it, don't reply to it and use the report button. Answering such a request also will lead to a warning. Also, paid support is prohibited.
Thread with solution is found here:
You must be registered for see links
Run this query for fix:
Code:ALTER TABLE `rooms` CHANGE `allow_pets` `allow_pets` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_pets_eat` `allow_pets_eat` INT(1) NOT NULL DEFAULT '0', CHANGE `room_blocking_disabled` `room_blocking_disabled` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_hidewall` `allow_hidewall` INT(1) NOT NULL DEFAULT '0', CHANGE `mute_settings` `mute_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `ban_settings` `ban_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `kick_settings` `kick_settings` INT(1) NOT NULL DEFAULT '1';
Did you change the code and rebuild your solution that is found on that thread?already ran that query and it didnt work
Yeah, but i just found out i did that wrong. Fixing it nowDid you change the code and rebuild your solution that is found on that thread?
I did this as I was on my phone and thought it'd be easier. I would always come back to the thread with the solution. I also moved it to PM to ask for the VPS/TeamViewer details.Paid/Private Help:
You are not allowed to offer (or ask) private help. Such things include: help over Teamviewer, help over PM (/conversations), join.me, etc. Make sure you keep everything inside the thread, so it helps future members with the same problems to fix it. When you see someone asking it, don't reply to it and use the report button. Answering such a request also will lead to a warning. Also, paid support is prohibited.
Thread with solution is found here:
You must be registered for see links
Run this query for fix:
Code:ALTER TABLE `rooms` CHANGE `allow_pets` `allow_pets` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_pets_eat` `allow_pets_eat` INT(1) NOT NULL DEFAULT '0', CHANGE `room_blocking_disabled` `room_blocking_disabled` INT(1) NOT NULL DEFAULT '0', CHANGE `allow_hidewall` `allow_hidewall` INT(1) NOT NULL DEFAULT '0', CHANGE `mute_settings` `mute_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `ban_settings` `ban_settings` INT(1) NOT NULL DEFAULT '1', CHANGE `kick_settings` `kick_settings` INT(1) NOT NULL DEFAULT '1';