Troubleshooting nuBuilder Installation issues: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Errors and Fixes == === v4.5 SQLSTATE[HY000]: General error: 1786 === * PHP v5.6 introduced some changes that may result in errors like: <pre> SQLSTATE[42S02]: Base table ..." |
No edit summary |
||
Line 13: | Line 13: | ||
* [https://stackoverflow.com/questions/40724046/mysql-gtid-consistency-violation The long term solution] | * [https://stackoverflow.com/questions/40724046/mysql-gtid-consistency-violation The long term solution] | ||
* [https://forums.nubuilder.com/viewtopic.php?f=19&t=10893 Forum Post] | * [https://forums.nubuilder.com/viewtopic.php?f=19&t=10893 Forum Post] | ||
=== No Database error === | |||
The following error occurs if the database does not exist: | |||
<pre> | |||
Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1049] Unknown database 'nubuilder4' | |||
</pre> | |||
The database has to be created manually first. |
Revision as of 09:40, 15 March 2021
Errors and Fixes
v4.5 SQLSTATE[HY000]: General error: 1786
- PHP v5.6 introduced some changes that may result in errors like:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'nubuilder4.___nu1604ddfc9e7288___' doesn't exist
- In my.cnf, make the following changes and restart MySQL
gtid_mode=OFF enforce_gtid_consistency=OFF
No Database error
The following error occurs if the database does not exist:
Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1049] Unknown database 'nubuilder4'
The database has to be created manually first.