Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Torrent Strike
Reply
Thread Tools
  #1  
Old 28th July 2009, 13:46
BBC BBC is offline
Senior Member
 
Join Date: May 2008
Posts: 18
Question Forum internal
Hello boys,
use torrentstrike with much satisfaction, but I would want to try to use the inner forum and not the phpbb like that one of tbdev, you say which modifications to me I must bring in the rows and the SQL? Thanks thousands for aid
Reply With Quote
  #2  
Old 2nd August 2009, 18:12
Tony's Avatar
Tony Tony is offline
Senior Member
 
Join Date: Mar 2008
P2P
Posts: 182
Default
simply rename the forums.php to forums_old.php and copy and paste the tbdev basic forum file into the root and thats it really ..

oh and just open your stdhead.php from within your themes folder and just edit the forum link so it directs to forums.php

if you dont already have the needed tables for the basic tbdev forum (even though its included in v4) then here you go

Code:
CREATE TABLE `forums` (
  `sort` tinyint(3) unsigned NOT NULL default '0',
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(60) character set latin1 collate latin1_general_ci NOT NULL default '',
  `description` varchar(200) character set latin1 collate latin1_general_ci default NULL,
  `minclassread` tinyint(3) unsigned NOT NULL default '0',
  `minclasswrite` tinyint(3) unsigned NOT NULL default '0',
  `postcount` int(10) unsigned NOT NULL default '0',
  `topiccount` int(10) unsigned NOT NULL default '0',
  `minclasscreate` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
Code:
CREATE TABLE `topics` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `userid` int(10) unsigned NOT NULL default '0',
  `subject` varchar(40) character set latin1 collate latin1_general_ci default NULL,
  `locked` enum('yes','no') character set latin1 collate latin1_general_ci NOT NULL default 'no',
  `forumid` int(10) unsigned NOT NULL default '0',
  `lastpost` int(10) unsigned NOT NULL default '0',
  `sticky` enum('yes','no') character set latin1 collate latin1_general_ci NOT NULL default 'no',
  `views` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `userid` (`userid`),
  KEY `subject` (`subject`),
  KEY `lastpost` (`lastpost`),
  KEY `locked_sticky` (`locked`,`sticky`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
CREATE TABLE `topics` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `userid` int(10) unsigned NOT NULL default '0',
  `subject` varchar(40) character set latin1 collate latin1_general_ci default NULL,
  `locked` enum('yes','no') character set latin1 collate latin1_general_ci NOT NULL default 'no',
  `forumid` int(10) unsigned NOT NULL default '0',
  `lastpost` int(10) unsigned NOT NULL default '0',
  `sticky` enum('yes','no') character set latin1 collate latin1_general_ci NOT NULL default 'no',
  `views` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `userid` (`userid`),
  KEY `subject` (`subject`),
  KEY `lastpost` (`lastpost`),
  KEY `locked_sticky` (`locked`,`sticky`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
Reply With Quote
Reply

Tags
forum , internal


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
500 Internal Server Error (Again) mat22 Yuna Scatari Edition (YSE) 5 11th May 2010 14:15
500 Internal Server Error mat22 Yuna Scatari Edition (YSE) 4 9th February 2010 16:22
Forum piraders Yuna Scatari Edition (YSE) 3 28th December 2009 01:06
Internal forums ocha Torrent Strike 1 29th March 2009 20:43
Internal server error demonbogdan BT.Manager (phpMyBitTorrent) 7 27th July 2008 22:43



All times are GMT +2. The time now is 18:14. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.