phpBB. Anyone familiar with this?

Discussion in 'Computers and The Internet' started by MattInVegas, May 12, 2004.

  1. MattInVegas

    MattInVegas John Denver Mega-Fan

    Messages:
    4,434
    Likes Received:
    15
    This question is for anyone who is familiar with "phpBB" Forums program.
    There is a Mod I want to install, and there is some code they don't tell me what to do with. (Normally, I would use "phpMyAdmin", but, MY forums don't use a "MySQL" database.)
    Here's the code:
    Code:
    [size=2]
    # 
     
    #-----[ SQL ]------------------------------------------ 
     
    # 
     
    CREATE TABLE `phpbb_faq` (
     
    `lang_id` varchar(50) NOT NULL default 'english',
     
    `faq_id` tinyint(11) NOT NULL default '0',
     
    `faq_title` varchar(255) NOT NULL default '',
     
    PRIMARY KEY (`faq_id`,`lang_id`)
     
    ) TYPE=MyISAM;
     
    # 
     
    #-----[ SQL ]------------------------------------------ 
     
    # 
     
    CREATE TABLE `phpbb_faq_text` (
     
    `lang_id` varchar(50) NOT NULL default 'english',
     
    `q_id` tinyint(11) NOT NULL default '0',
     
    `faq_id` tinyint(11) NOT NULL default '0',
     
    `q` text NOT NULL,
     
    `a` text NOT NULL,
     
    PRIMARY KEY (`q_id`,`lang_id`)
     
    ) TYPE=MyISAM;
     
    # 
     
    #-----[ SQL ]------------------------------------------ 
     
    # 
     
    CREATE TABLE `phpbb_bbcode` (
     
    `lang_id` varchar(50) NOT NULL default 'english',
     
    `faq_id` tinyint(11) NOT NULL default '0',
     
    `faq_title` varchar(255) NOT NULL default '',
     
    PRIMARY KEY (`faq_id`,`lang_id`)
     
    ) TYPE=MyISAM;
     
    # 
     
    #-----[ SQL ]------------------------------------------ 
     
    # 
     
    CREATE TABLE `phpbb_bbcode_text` (
     
    `lang_id` varchar(50) NOT NULL default 'english',
     
    `q_id` tinyint(11) NOT NULL default '0',
     
    `faq_id` tinyint(11) NOT NULL default '0',
     
    `q` text NOT NULL,
     
    `a` text NOT NULL,
     
    PRIMARY KEY (`q_id`,`lang_id`)
     
    ) TYPE=MyISAM;
    
    Anyone have a clue???

    p.s. Xaos, THIS is what Juggalo was asking you about. He's one of MY Moderators.


    [/size]
     
  2. MattInVegas

    MattInVegas John Denver Mega-Fan

    Messages:
    4,434
    Likes Received:
    15
    Nevermind. I found a different Modification that does the same thing, only a LOT less work! :D
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice