Re: im ACP Weisse seite?
Verfasst: 29.12.2011 09:55
Dann hast du also beim Einbau des Lexikons Mist gebaut?
Probiere es einfach nochmal.
Probiere es einfach nochmal.
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
Files to Edit
includes/constants.php,
includes/functions.php,
includes/message_parser.php,
language/en/acp/common.php,
language/en/common.php,
styles/prosilver/template/overall_header.html,
styles/prosilver/theme/bidi.css,
styles/prosilver/theme/common.css,
styles/prosilver/theme/colors.css,
viewtopic.php
Code: Alles auswählen
[phpBB Debug] PHP Warning: in file / install.php on line 448: Invalid argument für foreach geliefert ()
Lexikon Installer
Code: Alles auswählen
foreach($sql[$action] as $v)
Code: Alles auswählen
Open: language/de/acp/common.php
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
'ACP_LANGUAGE_PACKS' => 'Sprachpakete',
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code:Select All
'ACP_LEXICON' => 'Lexikon',
Code: Alles auswählen
Open: language/de/acp/common.php
Find
Tip: This may be a partial find and not the whole line.
Code:Select all
?>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select all
// simple acp pm read
$lang = array_merge($lang, array(
'ACP_PRVMSG' => 'Private messages',
'PM_READ' => 'Lesen Sie private Nachricht',
'PM_READ_EXPLAIN' => 'Lesen Sie hier alle Nachrichten von Ihrem Board',
'LIST_PM' => 'Insgesamt <strong> 1 </ strong> Private Nachricht',
'LIST_PMS' => 'Insgesamt <strong>% s </ strong> private Nachrichten',
'PM_SUBJECT' => 'Betreff',
'FROM' => 'Von',
'TO' => 'an',
'BCC' => 'Bcc',
'AUTHOR_IP' => 'Author IP',
'DATE' => 'Datum',
'NO_PM_DATA' => 'No pm data',
));
<sarcasm>Kann das etwas damit zutun haben?
Wo gibt's denn diese Lexicon-Mod zum Download? Und wie sieht diese install.php aus?Files to Edit
includes/constants.php,
includes/functions.php,
includes/message_parser.php,
language/en/acp/common.php,
language/en/common.php,
styles/prosilver/template/overall_header.html,
styles/prosilver/theme/bidi.css,
styles/prosilver/theme/common.css,
styles/prosilver/theme/colors.css,
viewtopic.php
Code: Alles auswählen
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;