

oder war diese Datei gemeint ? faq.phpDanke für die schnelle Antwort,aber in dem Theme X-Treme_Red gibt es unter template keine Datei die sich faq nennt.Da gibt es nur die editor.js , liveclock.js , und template.cfgÜber ein bisschen mehr Info wäre ich sehr dankbar Liebe Grüße Christian
Code: Alles auswählen
<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
$mode = request_var('mode', '');
// Load the appropriate faq file
switch ($mode)
{
case 'bbcode':
$l_title = $user->lang['BBCODE_GUIDE'];
$user->add_lang('bbcode', false, true);
break;
default:
$l_title = $user->lang['FAQ_EXPLAIN'];
$user->add_lang('faq', false, true);
break;
}
// Pull the array data from the lang pack
$switch_column = $found_switch = false;
$help_blocks = array();
foreach ($user->help as $help_ary)
{
if ($help_ary[0] == '--')
{
if ($help_ary[1] == '--')
{
$switch_column = true;
$found_switch = true;
continue;
}
$template->assign_block_vars('faq_block', array(
'BLOCK_TITLE' => $help_ary[1],
'SWITCH_COLUMN' => $switch_column,
));
if ($switch_column)
{
$switch_column = false;
}
continue;
}
$template->assign_block_vars('faq_block.faq_row', array(
'FAQ_QUESTION' => $help_ary[0],
'FAQ_ANSWER' => $help_ary[1])
);
}
// Lets build a page ...
$template->assign_vars(array(
'L_FAQ_TITLE' => $l_title,
'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'],
'SWITCH_COLUMN_MANUALLY' => (!$found_switch) ? true : false,
));
page_header($l_title, false);
$template->set_filenames(array(
'body' => 'faq_body.html')
);
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
Code: Alles auswählen
SQL ERROR [ mysql4 ]
Table 'd0103147.kas_phpbb_impressum' doesn't exist [1146]
SQL
SELECT * FROM kas_phpbb_impressum ORDER BY name
BACKTRACE
FILE: includes/db/mysql.php
LINE: 175
CALL: dbal->sql_error()
FILE: includes/acp/acp_impressum.php
LINE: 52
CALL: dbal_mysql->sql_query()
FILE: includes/functions_module.php
LINE: 507
CALL: acp_impressum->main()
FILE: adm/index.php
LINE: 74
CALL: p_master->load_active()
Code: Alles auswählen
CREATE TABLE `phpbb_impressum` (
`name` smallint(2) NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
`aktiv` smallint(1) NOT NULL default '0'
) TYPE=MyISAM;
INSERT INTO `phpbb_impressum` (`name`, `value`, `aktiv`) VALUES
(1, '', 1),
(2, '', 1),
(3, '', 1),
(4, '', 1),
(5, '', 1),
(6, '', 1),
(7, '', 1),
(8, '', 0),
(9, '', 1),
(10, '', 1),
(11, '', 1),
(12, '', 1),
(13, '', 1),
(14, '', 1),
(15, '', 1),
(16, '', 1),
(17, '', 1),
(18, '', 1),
(19, '', 1);
Code: Alles auswählen
phpbb_