I also encountered a sql error:
Code: Select all
General Error
SQL ERROR [ mysql4 ]
Table 'bettasoc_forum.bettasoclexicon' doesn't exist [1146]
SQL
SELECT DISTINCT UPPER(LEFT(TRIM(term),1)) AS a FROM bettasoclexicon WHERE lang = 'en-gb' ORDER BY a
BACKTRACE
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()
FILE: lexicon.php
LINE: 23
CALL: dbal_mysql->sql_query()
Code: Select all
CREATE TABLE `phpBB_lexicon` (
`term_id` mediumint(9) NOT NULL auto_increment,
`acronym` varchar(80) NOT NULL default '',
`term` varchar(80) default NULL,
`description` varchar(255) NOT NULL default '',
`long_desc` longtext,
`lang` varchar(15) NOT NULL default 'de',
PRIMARY KEY (`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Code: Select all
CREATE TABLE `bettalexicon` (
`term_id` mediumint(9) NOT NULL auto_increment,
`acronym` varchar(80) NOT NULL default '',
`term` varchar(80) default NULL,
`description` varchar(255) NOT NULL default '',
`long_desc` longtext,
`lang` varchar(15) NOT NULL default 'de',
PRIMARY KEY (`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Please someone help me to translate this wording: "Den gewünschten Buchstaben oben auswählen!" to English. It call from style/your_style/template/lexicon.html.
Another question is; how can I add the:
1. term_id - to start with what number?
2. acronym - please give sample
3. term - please give sample
4. description - maybe I know
5. long_desc - maybe I know
6. lang - please give sample
Thanks.