Seite 1 von 2
Mod LastPostTopic
Verfasst: 06.12.2006 14:38
von Christian Spitzhüttl
Hallo!
Ich habe ein problem mit dem einbau des Mods "LastPostTopic".
Nach dem ändern der "index.php" Datei bekomme ich nur noch eine Fehlermeldung. Kann mir da jemand weiterhelfen?
Oder es vielleicht einbauen?
Vielen Dank für die Hilfe!
Verfasst: 06.12.2006 14:42
von Dr.Death
Hi,
ich schmeisse mal meine Glaskugel an....
Glaskugel hat geschrieben:Hast du auch eine GENAUE Fehlermeldung, die du uns präsentieren kannst ?
Welches Forum meinst Du ( Link ) ?
Kannst Du einen Test User zur Verfügung stellen ?
Verlinke mal die Datei, die den Fehler erzeugt....
Verfasst: 06.12.2006 14:45
von Christian Spitzhüttl
Hallo!
nein, habe ich jetzt nicht, da ich diese änderung schon wieder rückgöngig gemacht habe!
Es würde um das Forum in meiner Signatur gehen!
Verfasst: 06.12.2006 14:50
von Dr.Death
Ah...
aber wir wissen immer noch nicht
was Deinen Fehler produziert hat, und
wie die Fehlermeldung lautet
Du könntest auch in eine Autowerkstat gehen, deinen Schlüssel abgeben und sagen:
"An meinem Wagen ist irgendetwas kaputt, bitte reparieren sie es"

Verfasst: 06.12.2006 14:51
von Christian Spitzhüttl
Ich mache es schnell mal rein, und sage noch mal bescheid.
Verfasst: 06.12.2006 14:59
von Dr.Death
ok, habs gesehen:
Parse error: syntax error, unexpected T_ELSE in /usr/export/www/vhosts/funnetwork/hosting/bahnkutscherpage/index.php on line 382
Baue die originale index.php wieder ein, damit dein board wieder funktioniert.
Verlinke uns mal die "defekte index.php" als txt datei ( wie es geht siehst du in meiner signatur )
brb...bin in ca. 1 stunde wieder da...
Verfasst: 06.12.2006 15:01
von Christian Spitzhüttl
Verfasst: 06.12.2006 15:02
von Dr.Death
NEIN.... nicht die "PHP" Datei verlinken.... siehe bitte meine Signatur !
Verfasst: 06.12.2006 15:04
von Christian Spitzhüttl
Ist es oben jetzt Besser?
Verfasst: 06.12.2006 15:57
von Dr.Death
Jupp !
Fehler gefunden.
Du hast beim einbauen wohl etwas falsch gemacht...
SUCHE:
Code: Alles auswählen
if ( $forum_data[$j]['forum_last_post_id'] ) { $topic_title = $forum_data[$j]['topic_title']; $topic_title2 = $forum_data[$j]['topic_title']; // // Censor topic title // if ( count($orig_word) ) { $topic_title = preg_replace($orig_word, $replacement_word, $topic_title); $topic_title2 = preg_replace($orig_word, $replacement_word, $topic_title2); } if (strlen($topic_title)>27) { $topic_title = substr($topic_title,0,24) . '...'; } $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']); $last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>'; $last_post .= $last_post_time . ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a><br>' . $lang['by'] . ' '; $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> '; }
else
ERSETZE MIT:
Code: Alles auswählen
if ( $forum_data[$j]['forum_last_post_id'] )
{
$topic_title = $forum_data[$j]['topic_title'];
$topic_title2 = $forum_data[$j]['topic_title'];
//
// Censor topic title
//
if ( count($orig_word) )
{
$topic_title = preg_replace($orig_word, $replacement_word, $topic_title);
$topic_title2 = preg_replace($orig_word, $replacement_word, $topic_title2);
}
if (strlen($topic_title)>27)
{
$topic_title = substr($topic_title,0,24) . '...';
}
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
$last_post .= $last_post_time . ' <a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a><br>' . $lang['by'] . ' ';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
}
else