Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.

Correction for the "Blank Screen After Login".

Post Reply
cwstevens
Posts: 1
Joined: Wed Jun 11, 2014 6:19 pm

Correction for the "Blank Screen After Login".

Unread post by cwstevens »

I was also getting the blank page after login problem. I tried every solution I could find in the forums and elsewhere online but nothing worked. What I finally learned was that the default 'sql_mode' that was being set by MySQL was:

Code: Select all

mysql> show variables like 'sql_mode'\G
*************************** 1. row ***************************
Variable_name: sql_mode
        Value: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
1 row in set (0.00 sec)
mysql> 
I had to remove the 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES' from the 'sql_mode'. Removing 'STRICT_TRANS_TABLES' allowed me to finally see the page after login and removing the 'ONLY_FULL_GROUP_BY' corrected other functionality problems. In 'my.cnf' (or in a new .cnf file) under the [mysqld] context I set:

Code: Select all

sql-mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
Restart MySQL and it should work after that.
admin
Site Admin
Posts: 2824
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 29 times

Re: Correction for the "Blank Screen After Login".

Unread post by admin »

.
starran
Posts: 1
Joined: Tue Jan 26, 2016 3:21 pm

Re: Correction for the "Blank Screen After Login".

Unread post by starran »

Sorry could you give a bit more detail on how to achieve this please. Logging in OK but only see a blank page

Sorry again - ignore above, solution was going to WampServer - PHP Settings - and turning off "Display Errors"
admin
Site Admin
Posts: 2824
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 29 times

Re: Correction for the "Blank Screen After Login".

Unread post by admin »

starran,

Have you seen these installation instructions?

https://www.nubuilder.net/downloads.php

Steven
Post Reply