Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Reikia
Parašė SpekT· 2010 Bal. 28 18:04:52
#1
Reikia modo, kad padarytu foruma pradiniame puslapyje per viduri,
php v7.
Parašė KBiT· 2010 Bal. 28 18:04:46
#2
Padaryk, kad atidarytų web'ą /forum.php
Parašė SpekT· 2010 Bal. 28 18:04:14
#3
KBiT parašė:
Padaryk, kad atidarytų web'ą /forum.php
Na man taip netinka...
Parašė shalonyi· 2010 Bal. 28 21:04:16
#4
tipo kaip? placiau biski :)
Parašė LARiS· 2010 Bal. 28 21:04:37
#5
Nesuprantu kaip tu nori, paaiškink plačiau...
Parašė salvinas· 2010 Bal. 28 21:04:34
#6
Jis nori,kad forumas butu per viduri kur naujienos,delto ir sako pagrindineme vebo puslapyje. Eik i admin menu ,paneles, ten susirask panele "Forumo temu sąrašas" ir ja ijunk.
Parašė SpekT· 2010 Bal. 29 17:04:41
#7
shalonyi parašė:
tipo kaip? placiau biski :)
Na man reikia taip, kad pvz nueinu į titulinį puslapį, ir kai bųna per patį web`o vidurį naujienos, tai per visą tą skiltį būtų forumas, nežinau ar taip įmanomą padaryti, bet būtų šaunu. :)
Štai pavizdys:
Kad vietoi "Paskutinės aktyvios Forumo temos" būtų visas forumas. :)
Creatium: didelius img dedam tarp [code ][/code ] tagų.
Redagavo Creatium· 2010 Bal. 29 17:04:15
Parašė SpekT· 2010 Bal. 29 17:04:20
#8
salvinas parašė:
Jis nori,kad forumas butu per viduri kur naujienos,delto ir sako pagrindineme vebo puslapyje. Eik i admin menu ,paneles, ten susirask panele "Forumo temu sąrašas" ir ja ijunk.
Nėra tokios paneles pas mane :?
Parašė Niger· 2010 Bal. 29 18:04:12
#9
Turetu but default buna.
Parašė SpekT· 2010 Bal. 29 18:04:53
#10
Niger parašė:
Turetu but default buna.
Dėja, nėra ;S
Parašė TQomas· 2010 Bal. 29 18:04:04
#11
Nesu matęs taip ir net neįsivaizduoju kaip reikėtų padaryti.
Parašė webzlt· 2010 Bal. 29 18:04:39
#12
o tai kas sitam saite padaryta ? ne tas pats? :D turi buti panelese, jeigu nera reiskia lievai saitas suinstalintas
Parašė SpekT· 2010 Bal. 29 19:04:35
#13
viskas gerai suinstalinta, tiesiog istrynes gal esu :?
Parašė ZW· 2010 Bal. 29 19:04:56
#14
taigi paimk default fusiono failus... Nueik i paneliu aplankala susirask forum_kazkas... Isidek i
ftp... ir viskas...
Nu blemba visai nemokat galva dirbt...
Atsiusciau as ja tau bet tau reikia v7 kaip supratau... o as neturiu v7 failu...
V6 vadinasi paneles
forum_threads_list_panel ir
forum_threads_panel
Tai nzn ar v7 taspats... bet ziurek kazka pan. ;)
Redagavo ZW· 2010 Bal. 29 19:04:17
Parašė SpekT· 2010 Bal. 29 20:04:41
#15
forum_threads_list_panel yra ši panele:
o forum_threads_panel yra ši panele
Manau skirtumas yra nuo to, ko aš noriu.
Redagavo SpekT· 2010 Bal. 29 20:04:49
Parašė SpekT· 2010 Geg. 1 10:05:49
#16
Na tai padėti nelabai kas galės matau :?
Parašė Rolisj· 2010 Geg. 1 10:05:26
#17
naudok šitą forum_threads_list_panel, tik truputi pasiredaguok jį, pasididink DESC LIMIT ir bus nrml :)
Parašė SpekT· 2010 Geg. 1 16:05:01
#18
Rolisj parašė:
naudok šitą forum_threads_list_panel, tik truputi pasiredaguok jį, pasididink DESC LIMIT ir bus nrml :)
Na man nelabai taip tinka, Man reikia kad visas forumas atsivertu, nebent eitu ta infusion perdaryti, bet ne mano ziniom dar tai.
Parašė xFlow· 2010 Geg. 1 16:05:44
#19
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fu...
+--------------------------------------------------------+
| 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 www.gnu.org/licen... 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')."
ORDER BY tt.thread_lastpost DESC LIMIT 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
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."
ORDER BY tt.thread_lastpost DESC LIMIT 10"
);
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'><a href='".BASEDIR."profile.php?lookup=".$data['thread_lastuser']."'>".$data['user_name']."</a><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();
}
?>
Redagavo xFlow· 2010 Geg. 1 16:05:06
Parašė SpekT· 2010 Geg. 4 13:05:12
#20
Na kaip matau, zinanciu nebus. :|
Parašė Rolisj· 2010 Geg. 4 14:05:56
#21
tai daryk kad pagrindinis puslapis būtų forum/index.php
Parašė SpekT· 2010 Geg. 4 21:05:04
#22
Rolisj parašė:
tai daryk kad pagrindinis puslapis būtų forum/index.php
Paskaityk auksciau biski ;)