Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Community Cafe (http://www.bvlist.com/forumdisplay.php?f=18)
-   -   My Little Source (http://www.bvlist.com/showthread.php?t=531)

helvijs13 5th June 2009 22:31

I have Problem :sos:

Can somebody give me the SQL file for Shoutbox?

crztz 16th June 2010 08:35

lol
 
whoever uses this source and have not the slighest ideea about php.. should know better before using this source. not only that it's full of bugs... but you will get hacked in 10 secs

Phogo 16th June 2010 13:04

to make shoutbox work run these sql queries:

Code:

CREATE TABLE `shoutbox` (
  `id` bigint(10) NOT NULL auto_increment,
  `userid` bigint(6) NOT NULL default '0',
  `to_user` int(10) NOT NULL default '0',
  `username` varchar(25) NOT NULL default '',
  `date` int(11) NOT NULL default '0',
  `text` text NOT NULL,
  `text_parsed` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `for` (`to_user`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

Code:

ALTER TABLE users ADD `show_shout` enum('yes','no') character set utf8 collate utf8_bin NOT NULL default 'yes';
ALTER TABLE users ADD `chatpost` int(11) NOT NULL default '1';
ALTER TABLE users ADD `shoutboxbg` enum('1','2','3') character set utf8 collate utf8_bin NOT NULL default '1';
ALTER TABLE `users` ADD `smile_until` int(10) NOT NULL default '0';



All times are GMT +2. The time now is 20:38.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.