Page 1 of 1

Correction for the "Blank Screen After Login".

Posted: Wed Dec 02, 2015 4:33 pm
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.

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

Posted: Mon Jan 11, 2016 7:04 am
by admin
.

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

Posted: Tue Jan 26, 2016 3:24 pm
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"

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

Posted: Fri Feb 12, 2016 3:12 am
by admin
starran,

Have you seen these installation instructions?

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

Steven