Un-Zip shoutbox and place the shoutbox folder in your nuke folder. Once you have that done, you need to go in the shoutbox folder and find shoutbox_cookies.php. Open it and set the password for your personal shoutbox admin panel, on the first line just enter a password like: $admin_password =XXXXXXX (XXXXXX being your password).
Next find the file shoutbox_mysql.php. Find:
Code:
// ##### CONFIG ##############################################################
$databasehost = "localhost";
// host with mySQL on it
$databasename = "mysql";
// mySQL database name
$tablename = "shoutbox";
// mySQL table name (no need to change this, really)
$dbuser = "Martin";
$dbpass = "XXXXXX";
// uname and password access details for the database
Fill in your $databasehost = "localhost";(change localhost if yours is different)
Next $databasename = "mysql";(is probably the same, but check anyway)
Next $tablename = "shoutbox";(leave this alone)
Next $dbuser = "Martin";(what ever your uname is when you installed mysql)
Next and last: $dbpass = "XXXXXX";(XXXXXX being the password you used when you installed mysql)
Now save and close everything and in your browser address bar type in your web address and include /setup-mysql.php like
http://www.XXXXXX.com/shoutbox/setup-mysql.php and hit enter. Follow the on screen instructions.
Once all that's done you can access admin by entering
http://www.XXXXXX.com/shoutbox/index.php and inter the password you put in shoutbox_cookies.php. That's it you're done. Now that wasnt so bad was it?
One thing you need to do is to put this code in a new block you make in admin/blocks at your web site, and name it ShoutBox or whatever you want (you can change it later).
Code:
<iframe src="shoutbox/viewshoutbox.php" width="100%" height="300" frameborder="0">
View the shoutbox
</iframe>