-
Enthusiast
UberCMS register error
I am trying to set up UberCMS 2.0.1 on my hotel and i get this error? After i register and clicked the button "Create Account" it sends me to this. Anyone knows how to fix this? =Shttp://i47.tinypic.com/mijqld.png
-
-
Account Upgraded | Title Enabled!
Re: UberCMS register error
This can be done in two ways...
1- Open your "my.ini" file within the MySQL installation directory, and look for the text "sql-mode".
Find:
Code:
# Set the SQL mode to strict sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
Replace with:
Code:
# Set the SQL mode to strict sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
Or
2- You can run an SQL query within your database management tool, such as phpMyAdmin:
Code:
SET @@global.sql_mode= '';
-
Enthusiast
Re: UberCMS register error