
ich versuch mal mein board wieder herzustellen und noch mal anfangen...
so gehts wenn man net richtig liest..

liebe grüße von
sausebaby
also man kann keine beiträge mehr lesenParse error: parse error, unexpected ';', expecting ')' in /var/www/web209/html/forum/viewtopic.php on line 806
kann es vielleicht daran liegen...??im common.php
FIND - Line 710
2.0.4 Code:
$email_headers = 'From: ' . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\nBcc: " . $email_addresses . "\n";
$emailer->use_template('group_approved');
$emailer->email_address(' ');//$userdata['user_email']
$emailer->set_subject($lang['Group_approved']);
$emailer->extra_headers($email_headers);
REPLACE WITH
2.0.5 Code:
$emailer->from($board_config['board_email']);
$emailer->replyto($board_config['board_email']);
for ($i = 0; $i < count($bcc_list); $i++)
{
$emailer->bcc($bcc_list[$i]);
}
$emailer->use_template('group_approved');
$emailer->set_subject($lang['Group_approved']);
im includes/usercp_register.php
FIND - Line 52
2.0.4 Code:
"U_AGREE_OVER13" => "profile.$phpEx?mode=register&agreed=true&sid=" . $userdata['session_id'],
"U_AGREE_UNDER13" => "profile.$phpEx?mode=register&agreed=true&coppa=true&sid=" . $userdata['session_id'])
REPLACE WITH
2.0.5 Code:
"U_AGREE_OVER13" => append_sid("profile.$phpEx?mode=register&agreed=true"),
"U_AGREE_UNDER13" => append_sid("profile.$phpEx?mode=register&agreed=true&coppa=true"))
language/lang_english/lang_admin.php
FIND - Line 254
2.0.4 Code:
$lang['Board_disable_explain'] = 'This will make the board unavailable to users. Do not log out when you disable the board because you will not be able to log back in!';
REPLACE WITH
2.0.5 Code:
$lang['Board_disable_explain'] = 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.';
FIND - Line 334
2.0.4 Code:
$lang['Cookie_secure_explain'] = 'If your server is running via SSL, set this to enabled, else leave as disabled';
$lang['Session_length'] = 'Session length [ seconds ]';
AFTER, ADD
2.0.5 Code:
// Visual Confirmation
$lang['Visual_confirm'] = 'Enable Visual Confirmation';
$lang['Visual_confirm_explain'] = 'Requires users enter a code defined by an image when registering.';
templates/subSilver/index_body.tpl
FIND - Line 68
2.0.4 Code:
<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
REPLACE WITH
2.0.5 Code:
<tr>
<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
FIND - Line 79
2.0.4 Code:
<input class="post" type="password" name="password" size="10" />
REPLACE WITH
2.0.5 Code:
<input class="post" type="password" name="password" size="10" maxlength="32" />