Plus EMU. Floor black screen bug.

Sup

New Member
Apr 2, 2017
15
0
Hey, when I start up my floor and added to the boxes and click save my screen stays only black. The room does not load up, what's wrong? Help please.
 

Joe

Well-Known Member
Jun 10, 2012
4,088
1,915
Maybe it's not creating the room model because his MySQL is in strict mode?

Method 1.
Make the following changes in the “my.ini/my.cnf”:

1. Look for the following line , this line will set MySQL strict mode
Code:
sql-mode = "STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

2. To disable MySQL strict mode, you can change the above line as follow:
Code:
sql_mode="TRADITIONAL,NO_AUTO_CREATE_USER,,NO_ENGINE_SUBSTITUTION"

3. Restart the MySQL service.

Method 2.
You may be able to run an SQL query within your database management tool such as phpMyAdmin which can normally be found from your web hosting control panel:
Code:
SET @@global.sql_mode= '';
 

Users who are viewing this thread

Top