Quote:
Originally Posted by KAC
There is no way for members to get to it .. There is nothing showing on the main page of Vb .. when your looking at the forums theres nothing there . and theres no button for it .. I was wondering how I would set it up so it would show it .
|
make sure you did all the PHP edits and all the templates
PHP Edits
----------------------------
admincp/index.php
includes/functions_online.php
----------------------------
Edit Templates
----------------------------
FORUMHOME
----------------------------
New Templates
----------------------------
shoutbox_archive
shoutbox_archive_message
shoutbox_archive_message_me
shoutbox_archive_topbit
shoutbox_iframe
shoutbox_main
shoutbox_main_message
shoutbox_main_message_me
shoutbox_newmessage
shoutbox_newmessage_refresh
------------------------------
Dont forget the MYSQL QUERIES
------------------------------
[sql]Run the following query in phpMyAdmin or the
query runner in the Admin CP (add the table
prefix (if you have one) before this part:
shout (
// ####################################
CREATE TABLE shout (
shoutid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
dateline INT(10) UNSIGNED NOT NULL DEFAULT '0',
pagetext MEDIUMTEXT NOT NULL,
PRIMARY KEY (shoutid)
)[/sql]