Setup: Difference between revisions
Jump to navigation
Jump to search
Line 71: | Line 71: | ||
::<script> - Any function in this script tag will be available anytime within nuBuilder. | ::<script> - Any function in this script tag will be available anytime within nuBuilder. | ||
function nuHeaderTest(){ | function nuHeaderTest(){ | ||
::console.log('Functions placed here before a closing script tag are available anywhere in nuBuilder Forte'); | ::console.log('Functions placed here before a closing script tag are available anywhere in nuBuilder Forte'); | ||
} | } | ||
</script> | </script> | ||
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> | <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> | ||
Line 89: | Line 85: | ||
::background : orange; | ::background : orange; | ||
} | } | ||
</style> | </style> | ||
Revision as of 08:53, 4 June 2020
Installing nuBuilder Forte
To get nuBuilder Forte up and running you'll need to do 4 things...
- Copy nuBuilder Forte files into a directory on your server.
- Create a new MySQL or Maria DB database.
- Import nubuilder4.sql into the new database.
- Update the following variables in nuconfig.php...
- nuConfigDBHost
- nuConfigDBName
- nuConfigDBUser
- nuConfigDBPassword
- nuConfigDBGlobeadminUsername - globeadmin username
- nuConfigDBGlobeadminPassword - globeadmin password
- nuConfigTitle
- nuConfigIsDemo
eg.
$nuConfigDBHost = "127.0.0.1"; $nuConfigDBName = "nubuilder4"; $nuConfigDBUser = "root"; $nuConfigDBPassword = ""; $nuConfigDBGlobeadminUsername = "globeadmin"; //-- globeadmin username $nuConfigDBGlobeadminPassword = "notpassword"; //-- globeadmin password $nuConfigTitle = "nuBuilder 4"; $nuConfigIsDemo = false;
Setup Inside nuBuilder
Setup
Click the Setup Button on the Setup Tab of the Home Form to edit the following...
Timeout
In minutes
Time Zone
Language
Set the language for the globeadmin user.
Email Settings
Auth SMTP settings required...
- User Name
- Password
- Host
- From Address
- From Name
- Port
- Use SSL
- Use Authentication
Header
The Header is placed in the HTML5 header of nuBuilder Forte and can be used for adding...
- Javascript libraries
- Javascript functions
- Style Sheets
- CSS Styles
eg.
<html>
- <header>
- <script> - Any function in this script tag will be available anytime within nuBuilder.
function nuHeaderTest(){
- console.log('Functions placed here before a closing script tag are available anywhere in nuBuilder Forte');
}
</script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<style>
.nuActionButton { //-- personalise your Action Buttons
- background : orange;
}
</style>
<script>
</source>
- </script>
- </header>
- <body></body>
</html>