Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

Blank page after install

Questions related to installing, updating, setting up and configuring
gardumo
Posts: 2
Joined: Fri Jan 26, 2018 2:59 pm

Blank page after install

Unread post by gardumo »

Hi, I'd like to try nuBuilder, i followed the installation instructions and I installed it on MAMP on Mac OSX Sierra 10.13.2.
Different frameworks works fine on MAMP but nuBuilder give me a blank page.
Please how can I resolve?
Thanks
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: Blank page after install

Unread post by toms »

Hi,

What's your PHP version?
nac
Posts: 113
Joined: Tue Dec 12, 2017 11:28 pm
Location: Aberdeen, UK

Re: Blank page after install

Unread post by nac »

Something else you could try is a different browser. Both Chrome and Firefox seem to be fine in my experience. If you have one of these installed, copy and paste the URL and see if that works.
Neil
gardumo
Posts: 2
Joined: Fri Jan 26, 2018 2:59 pm

Re: Blank page after install

Unread post by gardumo »

I tried Safari, Firefox and Chrome and php versions 5.6.32 and 7.1.12
but it doesn't work
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: Blank page after install

Unread post by toms »

gardumo,

I have no clue what's going wrong and I don't have a Mac to test it.
brandalley
Posts: 7
Joined: Sat Nov 17, 2018 5:21 pm

Re: Blank page after install

Unread post by brandalley »

same problem here
phpadmin 4.1.14-0024
Blank page , there was an issue during installation on my synology nas ( DS 409 ) with phpadmin 4.1.14-0024 and importing the database.
Error
SQL query:
/*!40101 SET NAMES utf8_bin */;
MySQL said: Documentation
#1115 - Unknown character set: 'utf8_bin'

after removing the ' _bin ' after the "utf8 " i was able to import
Import has been successfully finished, 77 queries executed. (nubuilder4.sql)
try to startup with
http://192.168.0.213/nuBuilder4/nuconfig
and switched on error messages
now i got Parse error: syntax error, unexpected T_VARIABLE in /volume1/web/nuBuilder4/nuconfig.php on line 3

nuconfig.php

<?php
ini_set('display_errors', '1')
$nuConfigDBHost = "192.168.0.213/nuBuilder4/";
$nuConfigDBName = "nubuilder4";
$nuConfigDBUser = "root";
$nuConfigDBPassword = "";
$nuConfigDBGlobeadminUsername = "globeadmin"; //-- globeadmin username
$nuConfigDBGlobeadminPassword = "nu"; //-- globeadmin password
$nuConfigTitle = "nuBuilder 4";
$nuConfigIsDemo = false;
/* $nuWelcomeBodyInnerHTML = "


is there anybody having any suggestions?
Martin
Posts: 30
Joined: Fri Nov 09, 2018 5:42 pm

Re: Blank page after install

Unread post by Martin »

There's a semicolon missing:

ini_set('display_errors', '1');
brandalley
Posts: 7
Joined: Sat Nov 17, 2018 5:21 pm

Re: Blank page after install

Unread post by brandalley »

ok i have added the ;

and now my page is blank again


<?php
ini_set('display_errors', '1');
$nuConfigDBHost = "192.168.0.213/nuBuilder4/";
$nuConfigDBName = "nubuilder4";
$nuConfigDBUser = "root";
$nuConfigDBPassword = "";
$nuConfigDBGlobeadminUsername = "globeadmin"; //-- globeadmin username
$nuConfigDBGlobeadminPassword = "nu"; //-- globeadmin password
$nuConfigTitle = "nuBuilder 4";
$nuConfigIsDemo = false;
/* $nuWelcomeBodyInnerHTML = "
Martin
Posts: 30
Joined: Fri Nov 09, 2018 5:42 pm

Re: Blank page after install

Unread post by Martin »

This doesn't look correct to me.
$nuConfigDBHost = "192.168.0.213/nuBuilder4/";

try:
$nuConfigDBHost = "192.168.0.213";
brandalley
Posts: 7
Joined: Sat Nov 17, 2018 5:21 pm

Re: Blank page after install

Unread post by brandalley »

Without the ; behind the show error line i got this :
Parse error: syntax error, unexpected T_VARIABLE in /volume1/web/nuBuilder4/nuconfig.php on line 3

if i add the ; page is blank
and i also removed the path to the nuBuilder folder in the $nuConfigDBHost line
below my actual config

can it be the enviroment settings of windows ?

Code: Select all

ini_set('display_errors', '1');
    $nuConfigDBHost                 = "192.168.0.213/";
    $nuConfigDBName                 = "nubuilder4";
    $nuConfigDBUser                 = "root";
    $nuConfigDBPassword             = "";
    $nuConfigDBGlobeadminUsername   = "globeadmin";     //-- globeadmin username
    $nuConfigDBGlobeadminPassword   = "nu";             //-- globeadmin password
    $nuConfigTitle                  = "nuBuilder 4";
    $nuConfigIsDemo                 = false;
/*    $nuWelcomeBodyInnerHTML			= "
Locked