Zmiana ilości tematów w panelu "Ostatnio poruszane tematy"
|
matthe2w |
Dodany dnia 20.04.2011 16:33:03
|
Przedszkolak
Postów: 7
Data rejestracji: 03.11.2009 20:44
|
Witam. Otóż gdy włączę panel "Ostatnio poruszane tematy" zajmuje mi on całą stronę. Jest to trochę uciążliwe, jednak bardzo przydatne. Także, jak mam zmienić, aby zamiast 15 tematów pokazywało 5?
Z góry dziękuję za pomoc.
Pozdrawiam.
Edytowane przez Pieka dnia 20.04.2011 16:34:43
|
|
|
|
Wścibski Gość |
Dodany dnia 24.11.2024 21:46:47
|
Pan Kontekstualny
Postów: n^x
Data rejestracji: Zawsze
|
|
IP: localhost |
|
|
Tymcio |
Dodany dnia 20.04.2011 16:34:17
|
Przedszkolak
Postów: 59
v7.02.06 Data rejestracji: 31.03.2007 23:21
|
Podaj proszę kod tego panelu
|
|
|
|
Pieka |
Dodany dnia 20.04.2011 16:34:55
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
Po co kod?
Jestem jaki jestem
|
|
|
|
Tymcio |
Dodany dnia 20.04.2011 16:36:39
|
Przedszkolak
Postów: 59
v7.02.06 Data rejestracji: 31.03.2007 23:21
|
Pieka napisał/a:
Po co kod?
A można to zmienić bez edycji kodu panelu ?
|
|
|
|
matthe2w |
Dodany dnia 20.04.2011 16:36:57
|
Przedszkolak
Postów: 7
Data rejestracji: 03.11.2009 20:44
|
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2010 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: forum_threads_list_panel.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at http://www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }
global $lastvisited;
if (!isset($lastvisited) || !isnum($lastvisited)) { $lastvisited = time(); }
$data = dbarray(dbquery(
"SELECT tt.thread_lastpost
FROM ".DB_FORUMS." tf
INNER JOIN ".DB_THREADS." tt ON tf.forum_id = tt.forum_id
WHERE ".groupaccess('tf.forum_access')." AND thread_hidden='0'
ORDER BY tt.thread_lastpost DESC LIMIT ".($settings['numofthreads']-1).", ".$settings['numofthreads']
));
$timeframe = empty($data['thread_lastpost']) ? 0 : $data['thread_lastpost'];
$result = dbquery(
"SELECT tt.thread_id, tt.thread_subject, tt.thread_views, tt.thread_lastuser, tt.thread_lastpost,
tt.thread_poll, tf.forum_id, tf.forum_name, tf.forum_access, tt.thread_lastpostid, tt.thread_postcount, tu.user_id, tu.user_name,
tu.user_status
FROM ".DB_THREADS." tt
INNER JOIN ".DB_FORUMS." tf ON tt.forum_id=tf.forum_id
INNER JOIN ".DB_USERS." tu ON tt.thread_lastuser=tu.user_id
WHERE ".groupaccess('tf.forum_access')." AND tt.thread_lastpost >= ".$timeframe." AND tt.thread_hidden='0'
ORDER BY tt.thread_lastpost DESC LIMIT 0,".$settings['numofthreads']
);
if (dbrows($result)) {
$i = 0;
opentable($locale['global_040']);
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n<tr>\n";
echo "<td class='tbl2'> </td>\n";
echo "<td width='100%' class='tbl2'><strong>".$locale['global_044']."</strong></td>\n";
echo "<td width='1%' class='tbl2' style='text-align:center;white-space:nowrap'><strong>".$locale['global_045']."</strong></td>\n";
echo "<td width='1%' class='tbl2' style='text-align:center;white-space:nowrap'><strong>".$locale['global_046']."</strong></td>\n";
echo "<td width='1%' class='tbl2' style='text-align:center;white-space:nowrap'><strong>".$locale['global_047']."</strong></td>\n";
echo "</tr>\n";
while ($data = dbarray($result)) {
$row_color = ($i % 2 == 0 ? "tbl1" : "tbl2");
echo "<tr>\n<td class='".$row_color."'>";
if ($data['thread_lastpost'] > $lastvisited) {
$thread_match = $data['thread_id']."\|".$data['thread_lastpost']."\|".$data['forum_id'];
if (iMEMBER && preg_match("(^\.{$thread_match}$|\.{$thread_match}\.|\.{$thread_match}$)", $userdata['user_threads'])) {
echo "<img src='".get_image("folder")."' alt='' />";
} else {
echo "<img src='".get_image("foldernew")."' alt='' />";
}
} else {
echo "<img src='".get_image("folder")."' alt='' />";
}
if ($data['thread_poll']) {
$thread_poll = "<span class='small' style='font-weight:bold'>[".$locale['global_051']."]</span> ";
} else {
$thread_poll = "";
}
echo "</td>\n";
echo "<td width='100%' class='".$row_color."'>".$thread_poll."<a href='".FORUM."viewthread.php?thread_id=".$data['thread_id']."&pid=".$data['thread_lastpostid']."#post_".$data['thread_lastpostid']."' title='".$data['thread_subject']."'>".trimlink($data['thread_subject'], 30)."</a><br />\n".$data['forum_name']."</td>\n";
echo "<td width='1%' class='".$row_color."' style='text-align:center;white-space:nowrap'>".$data['thread_views']."</td>\n";
echo "<td width='1%' class='".$row_color."' style='text-align:center;white-space:nowrap'>".($data['thread_postcount']-1)."</td>\n";
echo "<td width='1%' class='".$row_color."' style='text-align:center;white-space:nowrap'>".profile_link($data['thread_lastuser'], $data['user_name'], $data['user_status'])."<br />\n".showdate("forumdate", $data['thread_lastpost'])."</td>\n";
echo "</tr>\n";
$i++;
}
echo "</table>\n";
if (iMEMBER) {
echo "<div class='tbl1' style='text-align:center'><a href='".INFUSIONS."forum_threads_list_panel/my_threads.php'>".$locale['global_041']."</a> ::\n";
echo "<a href='".INFUSIONS."forum_threads_list_panel/my_posts.php'>".$locale['global_042']."</a> ::\n";
echo "<a href='".INFUSIONS."forum_threads_list_panel/new_posts.php'>".$locale['global_043']."</a>";
if($settings['thread_notify']) {
echo " ::\n<a href='".INFUSIONS."forum_threads_list_panel/my_tracked_threads.php'>".$locale['global_056']."</a>";
}
echo "</div>\n";
}
closetable();
}
?>
To będzie chyba to. Nie jestem pewny. |
|
|
|
Pieka |
Dodany dnia 20.04.2011 16:37:32
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
Od PHP-Fusion v6 masz to w PA. Gratuluje znajomosci rzeczy...
Jestem jaki jestem
|
|
|
|
Tymcio |
Dodany dnia 20.04.2011 16:39:00
|
Przedszkolak
Postów: 59
v7.02.06 Data rejestracji: 31.03.2007 23:21
|
Ok ;P Ustawienia---> Forum i tam masz
Edytowane przez Tymcio dnia 20.04.2011 16:39:46
|
|
|
|
matthe2w |
Dodany dnia 20.04.2011 16:39:16
|
Przedszkolak
Postów: 7
Data rejestracji: 03.11.2009 20:44
|
O kurcze. Faktycznie. Przepraszam za kłopot i serdeczne dzięki za pomoc. Naszukałem się jak głupi, a to było w PA > Ustawienia > Forum. Niedoczytałem "(Tylko dla panelu Ostatnie aktywne tematy)".
Pozdrawiam, temat proszę usunąć. |
|
|
|
Pieka |
Dodany dnia 20.04.2011 16:40:23
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
Nic tylko SE w leb strzelic przy was
Jestem jaki jestem
|
|
|
|
Tymcio |
Dodany dnia 20.04.2011 16:41:26
|
Przedszkolak
Postów: 59
v7.02.06 Data rejestracji: 31.03.2007 23:21
|
Oj no zdarza się ;P
Jak się czegoś nie używa, to potem tak jest ;P
A że ja przeważnie nie używam forum w ogóle, to takie są efekty ;P
|
|
|
|
matthe2w |
Dodany dnia 20.04.2011 16:41:32
|
Przedszkolak
Postów: 7
Data rejestracji: 03.11.2009 20:44
|
Cóż, niestety tak to jest z "przedszkolakami"
Edytowane przez matthe2w dnia 20.04.2011 16:41:44
|
|
|
|
jozio_94 |
Dodany dnia 26.01.2012 11:43:07
|
Przedszkolak
Postów: 84 Pomógł: 7 Ostrzeżeń: 2
Data rejestracji: 15.02.2011 21:39
|
Witam. Nie chcę zakładać nowego tematu, więc dopiszę się tutaj. Mam problem z panelem "Ostatnio aktywne tematy" na mojej stronie. Po utworzeniu tematu/kilku tematów w panelu nic się nie dzieje. Jest to raczej błąd w kodzie, ponieważ w PA mam ustawioną widoczność dla gości. Ktoś wie jak to naprawić? Proszę o pomoc.
Podaję kod:
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: forum_threads_panel.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at http://www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }
require(LOCALE.LOCALESET."forum/main.php");
global $lastvisited;
if (!isset($lastvisited) || !isnum($lastvisited)) $lastvisited = time();
$min = 5; // minimum visible posts in first level.
$max = 10; // maximum number of posts in second level (hidden).
add_to_head("<script type='text/javascript' language='JavaScript' src='".INFUSIONS."forum_threads2_panel/ft_boxover.js'></script>");
$imageold = get_image("folder2",$locale['561'],"",$locale['561']);
$imagenew = get_image("foldernew2",$locale['560'],"",$locale['560']);
echo "<table cellpadding='0' cellspacing='0'><tr><td valign='top' style='background-image: url(".THEME."images/tlo_panel.png); width: 300px; height: 176px;'>\n";
echo "<div style='padding: 7px 0 8px 10px;'><img src='".THEME."images/ostatnie_posty.png'></div>";
echo "<table cellpadding='0' cellspacing='0'>";
$timeframe = empty($data['thread_lastpost']) ? 0 : $data['thread_lastpost'];
$result = dbquery(
"SELECT tt.thread_id, tt.thread_subject, tt.thread_views, tt.thread_lastuser, tt.thread_lastpost,
tt.thread_poll, tf.forum_id, tf.forum_name, tf.forum_access, tt.thread_lastpostid, tt.thread_postcount, tu.user_id, tu.user_name,
tu.user_status, tp.post_message, tp.post_smileys, tp.post_id
FROM ".DB_THREADS." tt
INNER JOIN ".DB_FORUMS." tf ON tt.forum_id=tf.forum_id
INNER JOIN ".DB_POSTS." tp ON tt.thread_id=tp.post_id
INNER JOIN ".DB_USERS." tu ON tt.thread_lastuser=tu.user_id
WHERE ".groupaccess('tf.forum_access')." AND tt.thread_lastpost >= ".$timeframe." AND tt.thread_hidden='0'
ORDER BY tt.thread_lastpost DESC LIMIT 0,".$settings['numofthreads']
);
if (dbrows($result)) {
$i=1;
while($data = dbarray($result)) {
if ($i % 2 == 0) { $class = "class='kol2'"; } else { $class = ""; }
$itemsubject = trimlink($data['thread_subject'], 40);
$post_message = trimlink($data['post_message'],150);
if($data['post_smileys'])$post_message=parsesmileys($post_message);
$post_message = phpentities(nl2br(parseubb($post_message)));
$showdate = showdate("forumdate", $data['thread_lastpost']);
$odpods = ($data['thread_postcount']-1)."/".$data['thread_views'];
$autor = $data['user_name'];
echo "<tr><td><table cellpadding='0' cellspacing='0' $class><tr><td height='25' width='25' align='center'>";
if ($data['thread_lastpost'] > $lastvisited) {
$thread_match = $data['thread_id']."\|".$data['thread_lastpost']."\|".$data['forum_id'];
if (iMEMBER && ($data['thread_lastuser'] == $userdata['user_id'] || preg_match("(^\.{$thread_match}$|\.{$thread_match}\.|\.{$thread_match}$)", $userdata['user_threads']))) {
echo "<img src='".THEME."forum/folder2.png' alt='Brak nowych postów' />";
} else {
echo "<img src='".THEME."forum/foldernew2.png' alt='Nowe posty' />";
}
} else {
echo "<img src='".THEME."forum/folder2.png' alt='Brak nowych postów' />";
}
echo "</td><td style='font-size: 10px;'><b><a href='".FORUM."viewthread.php?thread_id=".$data['thread_id']."&pid=".$data['thread_lastpostid']."#post_".$data['thread_lastpostid']."' title=\"header=[ ".str_replace("]", "]]", str_replace("[", "[[", trimlink($data['thread_subject'], 30)))."] body=[<b>Odp/Ods:</b> $odpods<br><b>Data:</b> $showdate<br><b>Ostatni post:</b> $autor<br>".str_replace("]", "]]", str_replace("[", "[[", $post_message))."] delay=[0] fade=[on]\" class='side'>$itemsubject</a></b></td></tr></table></td></tr>";
$i++;
}
} else {
echo "<div style='text-align:center'>".$locale['global_023']."</div>\n";
}
echo "</table>";
echo "</td></tr></table>";
?>
|
|
|
|
bogdan |
Dodany dnia 26.01.2012 12:27:24
|
Ekspert
Postów: 2451 Pomógł: 164
v7.02.07 Data rejestracji: 21.07.2009 12:55
|
O który Ci panel chodzi ?
Centralny, czy boczny z samymi linkami.
Bo jeśli centralny, to nie ten plik i widocznie masz go nie włączonego.
Panel ma nazwę - forum_threads_list_panel.
Spróbuj - nie zapomnij włączyć.
I trochę bardziej się zapoznaj z PA strony.
PS.
Mógłbyś też podać adres strony w swoim profilu.
Edytowane przez bogdan dnia 26.01.2012 12:32:26
Nie szukaj Szczęścia, lecz dawaj Je innym, a wtedy samo do Ciebie przyjdzie.
Nie ma mnie na GG.
|
|
|
|
jozio_94 |
Dodany dnia 26.01.2012 12:41:17
|
Przedszkolak
Postów: 84 Pomógł: 7 Ostrzeżeń: 2
Data rejestracji: 15.02.2011 21:39
|
Niestety nie jest to żaden z paneli, których podałeś, ponieważ mój był robiony osobno i nazywa się forum_threads2_panel. Wersja PF 7.02.03 i adres stronki: http://dbheart.xa... |
|
|
|
bogdan |
Dodany dnia 26.01.2012 12:52:24
|
Ekspert
Postów: 2451 Pomógł: 164
v7.02.07 Data rejestracji: 21.07.2009 12:55
|
Wstawiłem plik w panel i z błędem (chyba locale), ale wyświetla.
A nie możesz korzystać z paneli dostosowanych do Fusiona, tylko utrudniać sobie życie ?
Kilka ich jest.
U nas, na innych supportach.
Nie szukaj Szczęścia, lecz dawaj Je innym, a wtedy samo do Ciebie przyjdzie.
Nie ma mnie na GG.
|
|
|
|
jozio_94 |
Dodany dnia 26.01.2012 15:50:39
|
Przedszkolak
Postów: 84 Pomógł: 7 Ostrzeżeń: 2
Data rejestracji: 15.02.2011 21:39
|
Ok, problem rozwiązany :) Tylko jeszcze po najechaniu na nazwę tematu wyświetla się "dymek", gdzie powinno być info: http://i44.tinypi...epi2w3.jpg
Kod panelu wygląda teraz tak:
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: forum_threads_panel.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at http://www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }
require(LOCALE.LOCALESET."forum/main.php");
global $lastvisited;
if (!isset($lastvisited) || !isnum($lastvisited)) $lastvisited = time();
$min = 5; // minimum visible posts in first level.
$max = 10; // maximum number of posts in second level (hidden).
add_to_head("<script type='text/javascript' language='JavaScript' src='".INFUSIONS."forum_threads2_panel/ft_boxover.js'></script>");
$imageold = get_image("folder2",$locale['561'],"",$locale['561']);
$imagenew = get_image("foldernew2",$locale['560'],"",$locale['560']);
echo "<table cellpadding='0' cellspacing='0'><tr><td valign='top' style='background-image: url(".THEME."images/tlo_panel.png); width: 300px; height: 176px;'>\n";
echo "<div style='padding: 7px 0 8px 10px;'><img src='".THEME."images/ostatnie_posty.png'></div>";
echo "<table cellpadding='0' cellspacing='0'>";
$timeframe = empty($data['thread_lastpost']) ? 0 : $data['thread_lastpost'];
$result = dbquery("
SELECT tt.forum_id, tt.thread_id, tt.thread_subject, tt.thread_lastpost FROM ".DB_THREADS." tt
INNER JOIN ".DB_FORUMS." tf ON tt.forum_id=tf.forum_id
WHERE ".groupaccess('tf.forum_access')." AND tt.thread_hidden='0'
ORDER BY thread_lastpost DESC LIMIT 0,".$settings['numofthreads']."
");
if (dbrows($result)) {
$i=1;
while($data = dbarray($result)) {
if ($i % 2 == 0) { $class = "class='kol2'"; } else { $class = ""; }
$itemsubject = trimlink($data['thread_subject'], 40);
$post_message = trimlink($data['post_message'],150);
if($data['post_smileys'])$post_message=parsesmileys($post_message);
$post_message = phpentities(nl2br(parseubb($post_message)));
$showdate = showdate("forumdate", $data['thread_lastpost']);
$odpods = ($data['thread_postcount']-1)."/".$data['thread_views'];
$autor = $data['user_name'];
echo "<tr><td><table cellpadding='0' cellspacing='0' $class><tr><td height='25' width='25' align='center'>";
if ($data['thread_lastpost'] > $lastvisited) {
$thread_match = $data['thread_id']."\|".$data['thread_lastpost']."\|".$data['forum_id'];
if (iMEMBER && ($data['thread_lastuser'] == $userdata['user_id'] || preg_match("(^\.{$thread_match}$|\.{$thread_match}\.|\.{$thread_match}$)", $userdata['user_threads']))) {
echo "<img src='".THEME."forum/folder2.png' alt='Brak nowych postów' />";
} else {
echo "<img src='".THEME."forum/foldernew2.png' alt='Nowe posty' />";
}
} else {
echo "<img src='".THEME."forum/folder2.png' alt='Brak nowych postów' />";
}
echo "</td><td style='font-size: 10px;'><b><a href='".FORUM."viewthread.php?thread_id=".$data['thread_id']."&Pid=".$data['thread_lastpostid']."#post_".$data['thread_lastpostid']."' title=\"header=[ ".str_replace("]", "]]", str_replace("[", "[[", trimlink($data['thread_subject'], 30)))."] body=[<b>Odp/Ods:</b> $odpods<br><b>Data:</b> $showdate<br><b>Ostatni post:</b> $autor<br>".str_replace("]", "]]", str_replace("[", "[[", $post_message))."] delay=[0] fade=[on]\" class='side'>$itemsubject</a></b></td></tr></table></td></tr>";
$i++;
}
} else {
echo "<div style='text-align:center'>".$locale['global_023']."</div>\n";
}
echo "</table>";
echo "</td></tr></table>";
?>
A kod odpowiedzialny za wyświetlenie informacji w tym dymku powinien wyglądać chyba tak:
$result = dbquery(
"SELECT tt.thread_id, tt.thread_subject, tt.thread_views, tt.thread_lastuser, tt.thread_lastpost,
tt.thread_poll, tf.forum_id, tf.forum_name, tf.forum_access, tt.thread_lastpostid, tt.thread_postcount, tu.user_id, tu.user_name,
tu.user_status, tp.post_message, tp.post_smileys, tp.post_id
FROM ".DB_THREADS." tt
INNER JOIN ".DB_FORUMS." tf ON tt.forum_id=tf.forum_id
INNER JOIN ".DB_POSTS." tp ON tt.thread_id=tp.post_id
INNER JOIN ".DB_USERS." tu ON tt.thread_lastuser=tu.user_id
WHERE ".groupaccess('tf.forum_access')." AND tt.thread_lastpost >= ".$timeframe." AND tt.thread_hidden='0'
ORDER BY tt.thread_lastpost DESC LIMIT 0,".$settings['numofthreads']
);
Tylko, że jak go wprowadzę to wyskakuję mi błąd, że brak kolumn w bazie danych. Być może, że to dlatego, bo chciałem sobie wstawić dopiski na forum od moderatora, na podstawie tego: http://www.php-fu...rowstart=0 Trzeba było wklepać ten kod do dodatkowych stron i dać podgląd:
<?php
$result = dbquery("DROP TABLE IF EXISTS ".$db_prefix."uwagi_mod");
$result = dbquery("CREATE TABLE ".$db_prefix."uwagi_mod (
notka_id MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT,
user_id MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
post_id MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
time INT(10) UNSIGNED NOT NULL DEFAULT '0',
notka TEXT NOT NULL,
PRIMARY KEY (notka_id)
) TYPE=MyISAM;");
if($result) {
echo "<div style='text-align:center'><br />Baza danych została utworzona.</div><br />\n";
}
?>
Prawdopodobnie kolumny bazy danych zostały zastąpione. Wie ktoś jak to naprawić? Proszę o pomoc
Edytowane przez jozio_94 dnia 26.01.2012 16:05:49
|
|
|