Hallo und guten Morgen.
Da ich mir nicht so sicher bin hier mal meine Frage:
Wie heißt der Mod, der im Feld "Letzter Beitrag" den Titel Des letzten Beitrages einfügt?
Als so:
---> Titel / Thema Letzter Beitrag
---> von ...
---> am ...
das ganze soll in die Index PHP, so das jeder das gleich sieht.Was ich gefunden habe scheint zu funktionieren,
aber ich habe Bedenken das ich die Dateien vom Portal kaputt mache( Es müssen ja versch. kopiert werden).
Vll.hat jemand ja einen DL-Link für den MOD der von Euch " für gut " befunden wurde?
Vielen Dank ! für das TOP PORTAL und Eure Mühen
MK-M
http://www.MK-M.de/forum
Feld letzter Beitrag--> Mod Beitragstitel Mod
Forum rules
Vor dem erstellen neuer Supportanfragen bitte zuerst in die board3 Portal FAQ schauen und die Suche benutzen!
Viele Fragen sind bereits schon gestellt und beantwortet worden.
Bitte auch unsere Forumsregeln lesen und beachten!
Vor dem erstellen neuer Supportanfragen bitte zuerst in die board3 Portal FAQ schauen und die Suche benutzen!
Viele Fragen sind bereits schon gestellt und beantwortet worden.
Bitte auch unsere Forumsregeln lesen und beachten!
-
Topic author - Active Member
- Posts: 41
- Joined: 5. February 2008 20:39
- phpBB.de User: MK-M
- Location: Wittingen
- Contact:
Re: Feld letzter Beitrag--> Mod Beitragstitel Mod
Hallo
hier Fehlermeldung:
Parse error: syntax error, unexpected T_DOUBLE_ARROW in /www/htdocs/w0097987/forum/includes/functions_display.php on line 395
Ich weiß damit nichts anzufangen.
Hier die funktions_display: http://www.mk-m.de/_downloads/functions_display.ph_
------------------------------------------------------------------------------------------------------------------
'LAST_TOPIC_TITLE' => (isset($last_topic_title) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title) : '',
'LAST_TOPIC_TITLE_SHORT' => (isset($last_topic_title_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title_substr) : '',
'LAST_POST_SUBJECT_SHORT' => (isset($last_post_subject_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_post_subject_substr) : '',
'U_LAST_TOPIC' => (isset($last_topic_url) && $config['altt_active'] && !$row['forum_password']) ? $last_topic_url : '',
if (!$config['altt_last_post'])
p.s.Die erste Zeile ist die mit dem Fehler.
---------------------------------------------------------------------------------------------------------------
Kann ev. jemand bitte helfen?
cu
MK-M
hier Fehlermeldung:
Parse error: syntax error, unexpected T_DOUBLE_ARROW in /www/htdocs/w0097987/forum/includes/functions_display.php on line 395
Ich weiß damit nichts anzufangen.
Hier die funktions_display: http://www.mk-m.de/_downloads/functions_display.ph_
------------------------------------------------------------------------------------------------------------------
'LAST_TOPIC_TITLE' => (isset($last_topic_title) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title) : '',
'LAST_TOPIC_TITLE_SHORT' => (isset($last_topic_title_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title_substr) : '',
'LAST_POST_SUBJECT_SHORT' => (isset($last_post_subject_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_post_subject_substr) : '',
'U_LAST_TOPIC' => (isset($last_topic_url) && $config['altt_active'] && !$row['forum_password']) ? $last_topic_url : '',
if (!$config['altt_last_post'])
p.s.Die erste Zeile ist die mit dem Fehler.
---------------------------------------------------------------------------------------------------------------
Kann ev. jemand bitte helfen?
cu
MK-M
-
- Dev
- Posts: 126
- Joined: 27. December 2007 00:23
- phpBB.de User: nickvergessen
- phpBB.com User: nickvergessen
Re: Feld letzter Beitrag--> Mod Beitragstitel Mod
lösche
hier gehts weiter
http://www.phpbb.de/viewtopic.php?t=148781
Code: Select all
if (!$config['altt_last_post'])
{
$last_topic_title = $row['topic_title'];
$last_topic_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id_last_post'] . '&t=' . $row['topic_id']);
$last_topic_title_substr = ( utf8_strlen($last_topic_title) > $config['altt_char_limit'] + 3 )? (utf8_substr($last_topic_title, 0, $config['altt_char_limit']) . '...') : ($last_topic_title);
$last_post_subject_substr = '';
}
else
{
$last_topic_title = '';
$last_topic_url = '';
$last_topic_title_substr = '';
$last_post_subject_substr = ( utf8_strlen($last_post_subject) > $config['altt_char_limit'] + 3 )? (utf8_substr($last_post_subject, 0, $config['altt_char_limit']) . '...') : ($last_post_subject);
}
'LAST_TOPIC_TITLE' => (isset($last_topic_title) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title) : '',
'LAST_TOPIC_TITLE_SHORT' => (isset($last_topic_title_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title_substr) : '',
'LAST_POST_SUBJECT_SHORT' => (isset($last_post_subject_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_post_subject_substr) : '',
'U_LAST_TOPIC' => (isset($last_topic_url) && $config['altt_active'] && !$row['forum_password']) ? $last_topic_url : '',
http://www.phpbb.de/viewtopic.php?t=148781
greez nickvergessen
Board3portal-Developer, German Support Team Member, MOD Author, Developer
P.S.: Ich mag Spambots doch!
Board3portal-Developer, German Support Team Member, MOD Author, Developer
P.S.: Ich mag Spambots doch!
-
Topic author - Active Member
- Posts: 41
- Joined: 5. February 2008 20:39
- phpBB.de User: MK-M
- Location: Wittingen
- Contact:
Re: Feld letzter Beitrag--> Mod Beitragstitel Mod
Danke schön !
Hat nach dem löschen geklappt .
Werde mich jetzt im Thread weiter durchstudieren.
Danke schön, nachmal ..
MK-M
_____________________________
gerade festgestellt:
Nun gehts leider weiter mit einem Fehler, wenn man den letzten Beitragstitel auf nein setzt, kommt die Fehlermeldung wenn man zum Forum aus dem Admincenter geht:
Allgemeiner Fehler
SQL ERROR [ mysql4 ]
Not unique table/alias: 't' [1066]
SQL
SELECT f.*, ft.mark_time, t.topic_title, t.topic_id, t.topic_last_post_id, t.topic_title, t.topic_id, t.topic_last_post_id FROM (phpbb_forums f) LEFT JOIN phpbb_forums_track ft ON (ft.user_id = 2 AND ft.forum_id = f.forum_id) LEFT JOIN phpbb_topics t ON (f.forum_last_post_id = t.topic_last_post_id) LEFT JOIN phpbb_topics t ON (f.forum_last_post_id = t.topic_last_post_id) ORDER BY f.left_id
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()
FILE: includes/functions_display.php
LINE: 124
CALL: dbal_mysql->sql_query()
FILE: index.php
LINE: 28
CALL: display_forums()
-----------------------------
Wenn man ja setzt ist alles o.k
Hat nach dem löschen geklappt .
Werde mich jetzt im Thread weiter durchstudieren.
Danke schön, nachmal ..
MK-M
_____________________________
gerade festgestellt:
Nun gehts leider weiter mit einem Fehler, wenn man den letzten Beitragstitel auf nein setzt, kommt die Fehlermeldung wenn man zum Forum aus dem Admincenter geht:
Allgemeiner Fehler
SQL ERROR [ mysql4 ]
Not unique table/alias: 't' [1066]
SQL
SELECT f.*, ft.mark_time, t.topic_title, t.topic_id, t.topic_last_post_id, t.topic_title, t.topic_id, t.topic_last_post_id FROM (phpbb_forums f) LEFT JOIN phpbb_forums_track ft ON (ft.user_id = 2 AND ft.forum_id = f.forum_id) LEFT JOIN phpbb_topics t ON (f.forum_last_post_id = t.topic_last_post_id) LEFT JOIN phpbb_topics t ON (f.forum_last_post_id = t.topic_last_post_id) ORDER BY f.left_id
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()
FILE: includes/functions_display.php
LINE: 124
CALL: dbal_mysql->sql_query()
FILE: index.php
LINE: 28
CALL: display_forums()
-----------------------------
Wenn man ja setzt ist alles o.k
-
- Former Team Member
- Posts: 246
- Joined: 15. January 2008 08:41
- phpBB.de User: PeterS
- phpBB.com User: PeterS
Re: Feld letzter Beitrag--> Mod Beitragstitel Mod
Hallo,
am besten bist du mit deinen Problemen, bei http://www.phpbb.de/viewtopic.php?t=148781 aufgehoben, denn das hat ja nichts mit dem Portal zu tun.
Dort bekommst du auch direkt die Hilfe die benötigst.
Gruß Peter
am besten bist du mit deinen Problemen, bei http://www.phpbb.de/viewtopic.php?t=148781 aufgehoben, denn das hat ja nichts mit dem Portal zu tun.
Dort bekommst du auch direkt die Hilfe die benötigst.
Gruß Peter
-
- Former Team Member
- Posts: 693
- Joined: 19. January 2006 22:50
- Location: Kamen
- Contact:
Re: Feld letzter Beitrag--> Mod Beitragstitel Mod
@MK-Mnickvergessen wrote: hier gehts weiter
http://www.phpbb.de/viewtopic.php?t=148781
Bitte immer den ganzen Beitrag lesen.
Genauso ist es.PeterS wrote:Hallo,
am besten bist du mit deinen Problemen, bei http://www.phpbb.de/viewtopic.php?t=148781 aufgehoben, denn das hat ja nichts mit dem Portal zu tun.
Dort bekommst du auch direkt die Hilfe die benötigst.
Gruß Peter
LG
Walter
"Klug ist nicht, wer keine Fehler macht. Klug ist der, der es versteht, sie zu korrigieren."
Walter
"Klug ist nicht, wer keine Fehler macht. Klug ist der, der es versteht, sie zu korrigieren."