Setup: Difference between revisions

From nuBuilderForte
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
=Setup=
=Setup=


==Timeout==
==Setup Inside nuBuilder==
===Timeout===
In minutes
In minutes
==Time Zone==
===Time Zone===
==Report Font==
===Report Font===
Extra font can be added here.
Extra font can be added here.


Each font name needs to be delimitted by a carriage return.
Each font name needs to be delimitted by a carriage return.


==Auth SMTP User Name==
===Auth SMTP User Name===
==Auth SMTP Password==
===Auth SMTP Password===
==Auth SMTP Host==
===Auth SMTP Host===
==Auth SMTP From Address==
===Auth SMTP From Address===
==Auth SMTP From Name==
===Auth SMTP From Name===
==Auth SMTP Port==
===Auth SMTP Port===
==Header==
===Header===
The Header will be placed in the HTML5 header of nuBuilder Forte, and can be used for.
The Header will be placed in the HTML5 header of nuBuilder Forte, and can be used for.
*Adding in Javascript libraries
*Adding in Javascript libraries
Line 39: Line 40:


<script>
<script>
</source>
==Setup Outside nuBuilder==
You will need to edit '''config.php''' and set the following variables..
*'''nuConfigDBHost
*'''nuConfigDBName
*'''nuConfigDBUser
*'''nuConfigDBPassword
*'''nuConfigDBGlobeadminUsername''' - globeadmin username
*'''nuConfigDBGlobeadminPassword''' - globeadmin password
*'''nuConfigTitle
*'''nuConfigIsDemo
eg.
<source lang="javascript">
    $nuConfigDBHost                = "127.0.0.1";
    $nuConfigDBName                = "nubuilder4";
    $nuConfigDBUser                = "root";
    $nuConfigDBPassword            = "";
    $nuConfigDBGlobeadminUsername  = "globeadmin";    //-- globeadmin username
    $nuConfigDBGlobeadminPassword  = "nu";            //-- globeadmin password
    $nuConfigTitle                  = "nuBuilder 4";
    $nuConfigIsDemo                = false;


</source>
</source>

Revision as of 03:02, 14 July 2017

Setup

Setup Inside nuBuilder

Timeout

In minutes

Time Zone

Report Font

Extra font can be added here.

Each font name needs to be delimitted by a carriage return.

Auth SMTP User Name

Auth SMTP Password

Auth SMTP Host

Auth SMTP From Address

Auth SMTP From Name

Auth SMTP Port

Header

The Header will be placed in the HTML5 header of nuBuilder Forte, and can be used for.

  • Adding in Javascript libraries
  • Adding Javascript functions
  • Add Style Sheets
  • Adding CSS Styles


The Header is placed in the middle of a <script></script> tag.

This allows you to add custom functions.

But if you want to add a Javascript library here you need to close the script, add the link and open it again.

eg.

<source lang="javascript">

</script>

<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>

<script>

</source>

Setup Outside nuBuilder

You will need to edit config.php and set the following variables..

  • nuConfigDBHost
  • nuConfigDBName
  • nuConfigDBUser
  • nuConfigDBPassword
  • nuConfigDBGlobeadminUsername - globeadmin username
  • nuConfigDBGlobeadminPassword - globeadmin password
  • nuConfigTitle
  • nuConfigIsDemo

eg.

<source lang="javascript">

   $nuConfigDBHost                 = "127.0.0.1";
   $nuConfigDBName                 = "nubuilder4";
   $nuConfigDBUser                 = "root";
   $nuConfigDBPassword             = "";
   $nuConfigDBGlobeadminUsername   = "globeadmin";     //-- globeadmin username
   $nuConfigDBGlobeadminPassword   = "nu";             //-- globeadmin password
   $nuConfigTitle                  = "nuBuilder 4";
   $nuConfigIsDemo                 = false;

</source>