Quote:
Originally Posted by Da_GoTTi
pseud i think u need to read my post again.
|
DaG ? If you want only registered users to shout then please read the vbindex options in your admincp.
And if you want to delete the shoutbox issue the following command:
PHP Code:
DROP table vbindex_shoutbox;
And after this recreate the shoutbox table with:
PHP Code:
CREATE TABLE vbindex_shoutbox (
shoutid int(11) NOT NULL
auto_increment,
userid int(11) NOT NULL default '0',
shout text NOT NULL,
dateline int(11) NOT NULL default '0',
PRIMARY KEY (shoutid)
) TYPE=MyISAM
Cheers,