Thread: NetManiack v1.6
View Single Post
  #130  
Old 2nd July 2010, 12:35
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Smile got
Quote:
Originally Posted by Phogo View Post
all in one package
where is the sql for it as its not in the download and in the sql thats there no shoutbox in it
i do not want to recode my site just need the sql for shoutbox
PHP Code:
CREATE TABLE `users` (
  `
idint(10unsigned NOT NULL auto_increment,
  `
usernamevarchar(40NOT NULL default '',
  `
old_passwordvarchar(40NOT NULL default '',
  `
passhashvarchar(32NOT NULL default '',
  `
secretvarchar(20character set utf8 collate utf8_bin NOT NULL default '',
  `
emailvarchar(80NOT NULL default '',
  `
statusenum('pending','confirmed'NOT NULL default 'pending',
  `
addeddatetime NOT NULL default '0000-00-00 00:00:00',
  `
last_logindatetime NOT NULL default '0000-00-00 00:00:00',
  `
last_accessdatetime NOT NULL default '0000-00-00 00:00:00',
  `
editsecretvarchar(20character set utf8 collate utf8_bin NOT NULL default '',
  `
privacyenum('strong','normal','low'NOT NULL default 'normal',
  `
stylesheetint(10) default '1',
  `
infotext,
  `
acceptpmsenum('yes','friends','no'NOT NULL default 'yes',
  `
ipvarchar(15NOT NULL default '',
  `
classtinyint(3unsigned NOT NULL default '0',
  `
avatarvarchar(100NOT NULL default '',
  `
uploadedbigint(20unsigned NOT NULL default '0',
  `
downloadedbigint(20unsigned NOT NULL default '0',
  `
titlevarchar(30NOT NULL default '',
  `
countryint(10unsigned NOT NULL default '0',
  `
notifsvarchar(100NOT NULL default '',
  `
modcommenttext NOT NULL,
  `
enabledenum('yes','no'NOT NULL default 'yes',
  `
avatarsenum('yes','no'NOT NULL default 'yes',
  `
donorenum('yes','no'NOT NULL default 'no',
  `
warnedenum('yes','no'NOT NULL default 'no',
  `
warneduntildatetime NOT NULL default '0000-00-00 00:00:00',
  `
torrentsperpageint(3unsigned NOT NULL default '0',
  `
topicsperpageint(3unsigned NOT NULL default '0',
  `
postsperpageint(3unsigned NOT NULL default '0',
  `
deletepmsenum('yes','no'NOT NULL default 'yes',
  `
savepmsenum('yes','no'NOT NULL default 'no',
  `
parkedenum('yes','no'NOT NULL default 'no',
  `
announceenum('yes','no'NOT NULL default 'no',
  `
passkeyvarchar(32NOT NULL,
  `
last_browseint(11NOT NULL default '0',
  `
languageint(10NOT NULL default '1',
  
PRIMARY KEY  (`id`),
  
UNIQUE KEY `username` (`username`),
  
KEY `status_added` (`status`,`added`),
  
KEY `ip` (`ip`),
  
KEY `uploaded` (`uploaded`),
  
KEY `downloaded` (`downloaded`),
  
KEY `country` (`country`),
  
KEY `last_access` (`last_access`),
  
KEY `enabled` (`enabled`),
  
KEY `warned` (`warned`)
ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=;

-- 
-- 
Dumping data for table `users`
-- 

INSERT INTO `users` (`id`, `username`, `old_password`, `passhash`, `secret`, `email`, `status`, `added`, `last_login`, `last_access`, `editsecret`, `privacy`, `stylesheet`, `info`, `acceptpms`, `ip`, `class`, `avatar`, `uploaded`, `downloaded`, `title`, `country`, `notifs`, `modcomment`, `enabled`, `avatars`, `donor`, `warned`, `warneduntil`, `torrentsperpage`, `topicsperpage`, `postsperpage`, `deletepms`, `savepms`, `parked`, `announce`, `passkey`, `last_browse`, `language`) VALUES
(1'Phogo''''751c074b8f309c7d49f44c852ea92a7d'0xc2bdc2a4c3967f45c3b9c3b50d7bc3b1c397c3afc2b0c3b3081521766873'info@moynahanmultimedia.com''confirmed''2010-07-02 10:13:17''2010-07-02 11:20:33''2010-07-02 10:28:16''''normal'1'''yes''127.0.0.1'6''00''12'''''yes''yes''no''no''0000-00-00 00:00:00'000'yes''no''no''no'''01); 
SO WHERE IS THE SQL FOR SHOUTBOX ?:unknown:

And the rest of the phps files to ad too

Last edited by wMan; 2nd July 2010 at 13:25.
Reply With Quote