Results 1 to 2 of 2

Thread: Anyone know how to fix this?

  1. #1
    LG
    LG is offline

    Join Date
    Jun 2005
    Posts
    90

    Default Anyone know how to fix this?

    I keep getting this database error:

    Error in : Unknown column 'FuncBlock' in 'field list'
    Query: 'SELECT `Name`, `FuncBlock` FROM `Modules` WHERE `Category` =
    'chat''

    All help greatly appreciated!

    Thanks....LG

  2. #2
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,634
    Blog Entries
    5

    Default

    Looks like a problem with some module code you loaded or your module table:

    Code:
    CREATE TABLE `Modules` (
      `ID` int(10) unsigned NOT NULL auto_increment,
      `Name` varchar(32) NOT NULL default '',
      `Conf` mediumtext NOT NULL,
      `FuncAdd` mediumtext NOT NULL,
      `FuncDel` mediumtext NOT NULL,
      `FuncUpdate` mediumtext NOT NULL,
      `FuncBlock` mediumtext NOT NULL,
      `FuncUnblock` mediumtext NOT NULL,
      `Help` mediumtext NOT NULL,
      `LogIn` mediumtext NOT NULL,
      `Type` enum('chat','forum') NOT NULL default 'chat',
      `ReadableName` varchar(15) NOT NULL default '',
      PRIMARY KEY  (`ID`),
      UNIQUE KEY `Name` (`Name`)
    ) TYPE=MyISAM AUTO_INCREMENT=1 ;
    Smoge
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •