Po dodaniu trzeciego newsa reszta wyświetla się pod nim w dwóch kolumnach
|
aryS |
Dodany dnia 24.12.2009 21:37:46
|
Przedszkolak
Postów: 12
Data rejestracji: 19.03.2008 21:31
|
Edytowałem plik news.php na potrzeby własne , wszystko ładnie newsy się wyświetlają , po czym trzeci news sprawia mi pewną niespodziankę:
http://img259.ima...creent.jpg
news.php:
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
if (isset($readmore) && !isNum($readmore)) fallback(FUSION_SELF);
// Predefined variables, do not edit these values
if ($settings['news_style'] == "1") { $i = 0; $rc = 0; $ncount = 1; $ncolumn = 1; $news_[0] = ""; $news_[1] = ""; $news_[2] = ""; } else { $i = 1; }
// This number should be an odd number to keep layout tidy
$items_per_page = 11;
if (!isset($readmore)) {
$rows = dbcount("(news_id)", "news", groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
if (!isset($rowstart) || !isNum($rowstart)) $rowstart = 0;
if ($rows != 0) {
$result = dbquery(
"SELECT tn.*, tc.*, user_id, user_name FROM ".$db_prefix."news tn
LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
LEFT JOIN ".$db_prefix."news_cats tc ON tn.news_cat=tc.news_cat_id
WHERE ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")
ORDER BY news_sticky DESC, news_datestamp DESC LIMIT $rowstart,$items_per_page"
);
$numrows = dbrows($result);
if ($settings['news_style'] == "1") $nrows = round((dbrows($result) - 1) / 2);
while ($data = dbarray($result)) {
$news_cat_image = "";
$news_subject = "<a name='news_".$data['news_id']."' id='news_".$data['news_id']."'></a>".stripslashes($data['news_subject']);
if ($data['news_cat_image']) {
$news_cat_image = "<a href='news_cats.php?cat_id=".$data['news_cat_id']."'><img src='".IMAGES_NC.$data['news_cat_image']."' alt='".$data['news_cat_name']."' align='left' style='border:0px;margin-top:3px;margin-right:5px'></a>";
} else {
$news_cat_image = "";
}
$news_news = $data['news_breaks'] == "y" ? nl2br(stripslashes($data['news_news'])) : stripslashes($data['news_news']);
if ($news_cat_image != "") $news_news = $news_cat_image.$news_news;
$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"news_date" => $data['news_datestamp'],
"news_ext" => $data['news_extended'] ? "y" : "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)", "comments", "comment_type='N' AND comment_item_id='".$data['news_id']."'"),
"news_allow_comments" => $data['news_allow_comments']
);
if ($settings['news_style'] == "1") {
if ($rows <= 2 || $ncount == 1) {
$news_[0] .= "<table width='100%' cellpadding='0' cellspacing='0'>\n";
$news_[0] .= "<tr>\n<td class='tbl2'><b>$news_subject</b></td>\n</tr>\n";
$news_[0] .= "<tr>\n<td class='tbl1' style='text-align:justify'>$news_news</td>\n</tr><p> \n";
$news_[0] .= "<tr>\n<td align='center' class='tbl2'>\n";
$news_[0] .= "<span class='small2'><img src='".THEME."images/bullet.gif' alt=''> <a href='profile.php?lookup=".$news_info['user_id']."'>".$news_info['user_name']."</a> ".$locale['041'].showdate("longdate", $news_info['news_date'])." ·\n";
if ($news_info['news_ext'] == "y" || $news_info['news_allow_comments']) {
$news_[0] .= $news_info['news_ext'] == "y" ? "<a href='".FUSION_SELF."?readmore=".$news_info['news_id']."'>".$locale['042']."</a> ·\n" : "";
$news_[0] .= $news_info['news_allow_comments'] ? "<a href='".FUSION_SELF."?readmore=".$news_info['news_id']."'>".$news_info['news_comments'].$locale['043']."</a> ·\n" : "";
}
$news_[0] .= " ";
$news_[0] .= "</td>\n</tr>\n</table>\n";
if ($ncount != $rows) $news_[0] .= "<div><img src='".THEME."images/blank.gif' alt='' width='1' height='8'></div>\n";
} else {
if ($i == $nrows && $ncolumn != 2) { $ncolumn = 2; $i = 0; }
$row_color = ($rc % 2 == 0 ? "tbl2" : "tbl1");
$news_[$ncolumn] .= "<table width='100%' cellpadding='0' cellspacing='0'>\n";
$news_[$ncolumn] .= "<tr>\n<td class='tbl2'><b>$news_subject</b></td>\n</tr>\n";
$news_[$ncolumn] .= "<tr>\n<td class='tbl1' style='text-align:justify'>$news_news</td>\n</tr>\n";
$news_[$ncolumn] .= "<tr>\n<td align='center' class='tbl2'>\n";
if ($news_info['news_ext'] == "y" || $news_info['news_allow_comments']) {
} else {
}
if ($ncolumn == 1 && $i < ($nrows - 1)) $news_[$ncolumn] .= "<div><img src='".THEME."images/blank.gif' alt='' width='1' height='8'></div>\n";
if ($ncolumn == 2 && $i < (dbrows($result) - $nrows - 2)) $news_[$ncolumn] .= "<div><img src='".THEME."images/blank.gif' alt='' width='1' height='8'></div>\n";
$i++; $rc++;
}
$ncount++;
} else {
render_news($news_subject, $news_news, $news_info);
if ($i != $numrows) { tablebreak(); } $i++;
}
}
if ($settings['news_style'] == "1") {
opentable($locale['046']);
echo "<table cellpadding='0' cellspacing='0' style='width:100%'>\n<tr>\n<td colspan='3' style='width:100%'>\n";
echo $news_[0];
echo "</td>\n</tr>\n<tr>\n<td style='width:50%;vertical-align:top;'>\n";
echo $news_[1];
echo "</td>\n<td style='width:10px'><img src='".THEME."images/blank.gif' alt='' width='10' height='1'></td>\n<td style='width:50%;vertical-align:top;'>\n";
echo $news_[2];
echo "</td>\n</tr>\n</table>\n";
closetable();
}
if ($rows > $items_per_page) echo "<div align='center' style='margin-top:5px;'>\n".makePageNav($rowstart,$items_per_page,$rows,3)."\n</div>\n";
} else {
opentable($locale['046']);
echo "<center><br>\n".$locale['047']."<br><br>\n</center>\n";
closetable();
}
} else {
include INCLUDES."comments_include.php";
include INCLUDES."ratings_include.php";
$result = dbquery(
"SELECT tn.*, user_id, user_name FROM ".$db_prefix."news tn
LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
WHERE news_id='$readmore'"
);
if (dbrows($result)!=0) {
$data = dbarray($result);
if (checkgroup($data['news_visibility'])) {
$news_cat_image = "";
if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
$result2 = dbquery("UPDATE ".$db_prefix."news SET news_reads=news_reads+1 WHERE news_id='$readmore'");
$data['news_reads']++;
}
$news_subject = $data['news_subject'];
if ($data['news_cat'] != 0) {
$result2 = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='".$data['news_cat']."'");
if (dbrows($result2)) {
$data2 = dbarray($result2);
$news_cat_image = "<a href='news_cats.php?cat_id=".$data2['news_cat_id']."'><img src='".IMAGES_NC.$data2['news_cat_image']."' alt='".$data2['news_cat_name']."' align='left' style='border:0px;margin-top:3px;margin-right:5px'></a>";
}
}
$news_news = stripslashes($data['news_extended'] ? $data['news_extended'] : $data['news_news']);
if ($data['news_breaks'] == "y") { $news_news = nl2br($news_news); }
if ($news_cat_image != "") $news_news = $news_cat_image.$news_news;
$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"news_date" => $data['news_datestamp'],
"news_ext" => "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)", "comments", "comment_type='N' AND comment_item_id='".$data['news_id']."'"),
"news_allow_comments" => $data['news_allow_comments']
);
render_news($news_subject, $news_news, $news_info);
if ($data['news_allow_comments']) showcomments("N","news","news_id",$readmore,FUSION_SELF."?readmore=$readmore");
if ($data['news_allow_ratings']) showratings("N",$readmore,FUSION_SELF."?readmore=$readmore");
} else {
redirect(FUSION_SELF);
}
} else {
redirect(FUSION_SELF);
}
}
require_once "side_right.php";
require_once "footer.php";
?>
Z tego co pamiętam , chciałem usunąć tam górną belkę ,oraz jakieś info ze stopki i pewnie gdzieś popełniłem błąd , nie jestem pewien czy to w tym miejscy czy nie , ale zapewne tak. Prosiłbym was o pomoc.
PW od moderatora:
- Zmiana nazwy tematu - Pieka 24.12 - 23:55
Edytowane przez Pieka dnia 25.12.2009 23:27:33
|
|
|
|
Wścibski Gość |
Dodany dnia 24.11.2024 17:50:13
|
Pan Kontekstualny
Postów: n^x
Data rejestracji: Zawsze
|
|
IP: localhost |
|
|
Gismo_PL |
Dodany dnia 25.12.2009 10:34:48
|
Bywalec
Postów: 462 Pomógł: 40 Ostrzeżeń: 2
v7.01.05 Data rejestracji: 25.02.2007 21:13
|
Adresik strony z łaski swojej podaj oraz kodzik pliku theme.php.
|
|
|
|
aryS |
Dodany dnia 25.12.2009 10:43:10
|
Przedszkolak
Postów: 12
Data rejestracji: 19.03.2008 21:31
|
www.nn-team.pl
kod theme.php:
<?php
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
require_once INCLUDES."theme_functions_include.php";
// theme settings
$body_text = "#fff";
$body_bg = "#454545";
$theme_width = "950";
$theme_width_l = "170";
$theme_width_r = "170";
function render_header($header_content) {
global $theme_width;
echo "
<center><img src=".THEME."images/head.png width=950 height=20 alt='' /></center>
";
echo "
<table align=center width=$theme_width height=31 class='nuorodos1' background=".THEME."images/bg3.jpg cellspacing=0 cellpadding=0>
<tr height='29'>
<td class='menu' align=left style='padding-left:30px; padding-top:1px; '><dl>
<a href='../../news.php'><img src=".THEME."images/menu1.jpg border='0' alt='' /></a>
</dl>
</td>
<td class='menu' align=left style='padding-right:0px; padding-top:1px; '><dl>
<a href='../../forum/index.php'><img src=".THEME."images/menu2.jpg alt='' border='0' /></a>
</dl>
</td>
<td class='menu' align=left style='padding-right:70px; padding-bottom:30px; '><dl id='menu1'>
<dt><img src=".THEME."images/menu3.jpg alt='' /></dt>
<dd><a href='../../articles.php'>Artykuły</a></dd>
<dd><a href='../../infusions/aw_ecal_panel/calendar.php'>Kalendarz</a></dd>
<dd><a href='../../contact.php'>Kontakt</a></dd>
<dd><a href='../../search.php'>Szukaj</a></dd>
</dl>
<script type='text/javascript'>
// <![CDATA[
new Menu('menu1', 'position: absolute; ', true, true, -1, -1, -1, -1, true);
// ]]>
</script></td>
<td class='menu' align=left style='padding-right:70px; padding-bottom:30px;'><dl id='menu2'>
<dt><img src=".THEME."images/menu4.jpg alt='' /></dt>
<dd><a href='../../viewpage.php?page_id=7'>Skład</a></dd>
<dd><a href='../../infusions/eXtreme_warstats_panel/eXtreme_warstats.php'>Mecze</a></dd>
<dd><a href='../../viewpage.php?page_id=1'>Historia</a></dd>
<dd><a href='../../viewpage.php?page_id=2'>Osiągnięcia</a></dd>
<dd><a href='../../viewpage.php?page_id=3'>Rekrutacja</a></dd>
</dl>
<script type='text/javascript'>
// <![CDATA[
new Menu('menu2', 'position: absolute;', true, true, -1, -1, -1, -1, true);
// ]]>
</script></td>"
?>
<?php
echo "
<td class='menu' align=left style='padding-right:300px; padding-bottom:30px;'><dl id='menu'>
<dt><img src=".THEME."images/menu5.jpg alt='' /></dt>
<dd><a href='../../photogallery.php'>Galeria</a></dd>
<dd><a href='../../viewpage.php?page_id=4'>NN.Cinema</a></dd>
<dd><a href='../../viewpage.php?page_id=5'>NN.Fanart</a></dd>
<dd><a href='../../viewpage.php?page_id=6'>Pliki</a></dd>
</dl>
<script type='text/javascript'>
// <![CDATA[
new Menu('menu', 'position: absolute ; ', true, true, -1, -1, -1, -1, true);
// ]]>
</script></td>
</tr>
</table>
";
?>
<table align="center" width="950" border="0" cellspacing="0" cellpadding="0" style="background-image: url(http://www.nn.xaa.pl/themes/nnthem/header1.jpg); background-repeat: no-repeat;">
<tr>
<td width="400"></td>
<td width="150"></td>
<td width="400" height="150">
<table width="400" height="150" style="margin-right:0px;" >
<tr width="400" height="40"><div style="position: absolute; width: 400px ; height: 150px; ">
</tr>
<tr height="110"></tr>
</table>
</td>
</tr>
</table>
<?php
echo "<table align='center' cellspacing='0' cellpadding='0' width='$theme_width' height=2 >
<tr>
<td style='background-color:#e0e1e3'> </td>
";
echo "<table align='center' cellspacing='0' cellpadding='0' width='$theme_width' >
<tr>
<td>
\n";
}
function render_footer($license=false) {
global $theme_width,$settings;
echo "</tr>\n</table>\n";
echo "<table cellpadding='0' align='center' cellspacing='0' width='$theme_width'>
<tr>
<td height='40' background='".THEME."images/footer.png' align='center' class='footer'>".stripslashes($settings['footer'])." </a>
</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
function render_news($subject, $news, $info) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td background='".THEME."images/vrs2.png' height='35' class='capmain'><img src='".THEME."images/a.png'> $subject</td>
</tr>
<tr>
<td class='main-body'>$news</td>
</tr>
<tr>
<td align='center' height='16' class='news-footer' style='padding-right:20px;'>\n";
echo openform("N",$info['news_id']).newsposter($info," ·").newsopts($info,"·").closeform("N",$info['news_id']);
echo "</td>
<br>
<br>
</tr>
</table>\n";
}
function render_article($subject, $article, $info) {
echo "<table width='100%' cellpadding='0' cellspacing='0'>
<tr>
<td background='".THEME."images/vrs2.png' height='35' class='capmain'><img src='".THEME."images/a.png'> $subject</td>
</tr>
<tr>
<td class='main-body'>
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
</td>
</tr>
<tr>
<td align='center' height='16' class='news-footer' style='padding-right:10px;'>\n";
echo openform("A",$info['article_id']).articleposter($info," ·").articleopts($info,"·");
echo "</td>
</tr>
</table>\n";
}
function opentable($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
</tr>
<tr>
<td class='main'>\n";
}
function opentable2($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%' >
<tr>
<td background='".THEME."images/info.png' height='26' class='capmain' ><div style='text-align: center; color: black;'> $title</div></td>
</tr>
<tr>
<td class='main1' style='border: 1px solid #d1d1d1;'>\n";
}
function opentable3($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%' >
<tr>
<td background='".THEME."images/info.png' height='26' class='capmain' ><div style='text-align: center; color: black;'> $title</div></td>
</tr>
<tr>
<td class='main1' style='border: 1px solid #d1d1d1;'>\n";
}
function closetable() {
echo "</td>
</tr>
<td background='".THEME."images/capc2.png' height='16' class='scapmain' ></td>
</table>\n";
}
function closetable1() {
echo "</td>
</tr>
<td background='".THEME."images/capc4.png' height='16' class='scapmain'></td>
</table>\n";
}
function openside($title) {
echo "<table cellpadding='0' cellspacing='0' width='200px' class='border'>
<tr>
<td background='".THEME."images/vrs.png' height='23' class='scapmain'><img src='".THEME."images/a.png'> $title</td>
</tr>
<tr>
<td class='side-body'>\n";
}
function closeside() {
echo "</td>
</tr>
<td background='".THEME."images/apc.png' height='11' width='170' class='scapmain'></td>
</table>\n";
tablebreak();
}
function closeside1() {
echo "</td>
</tr>
<td background='".THEME."images/capc3.png' height='14' width='100%' class='scapmain'></td>
</table>\n";
tablebreak();
}
function opensidex($title,$state="on") {
$boxname = str_replace(" ", "", $title);
echo "<table cellpadding='0' cellspacing='0' width='200px' class='border'>
<tr>
<td background='".THEME."images/vrs.png' height='35' width='170' class='scapmain'><img src='".THEME."images/a.png'> $title</td>
<td align='right'></td>
</tr>
<tr>
<td colspan='2' class='side-body'>
<div id='box_$boxname'".($state=="off"?" style='display:none'":"").">\n";
}
function closesidex() {
echo "</div>
</td>
</tr>
</table>\n";
tablebreak();
}
function tablebreak() {
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n<td height='5'></td>\n</tr>\n</table>\n";
}
?>
|
|
|
|
Gismo_PL |
Dodany dnia 25.12.2009 11:27:50
|
Bywalec
Postów: 462 Pomógł: 40 Ostrzeżeń: 2
v7.01.05 Data rejestracji: 25.02.2007 21:13
|
Zacznij przede wszystkim od poprawienia stopki ponieważ informacja: system: php-fusion jest niewystarczająca a łamiesz przy tym warunki licencji tego cms'a. Znajdziesz masę informacji na forum z tego tematu. Naniesiesz poprawki to pomyślimy o Twoim problemie , bo aktualnie nie należy Ci się ona - nawet urok świąt w tym Ci nie pomoże .
|
|
|
|
aryS |
Dodany dnia 25.12.2009 11:54:25
|
Przedszkolak
Postów: 12
Data rejestracji: 19.03.2008 21:31
|
Jeśli chodziło o podlinkowanie : http://www.php-fu... , to zostało to poprawione i przepraszam za to uchybienie , wywołane zostało moją niewiedzą.
Edytowane przez aryS dnia 25.12.2009 11:55:17
|
|
|
|
Pieka |
Dodany dnia 25.12.2009 12:13:46
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
A czym sie rozni wedlug Ciebie zle od niepoprawnego? Opisz to.
Odnosnie wyswietlania newsow, masz wybrane jak widze wyswietlanie w dwoch kolumnach i stad ten efekt.
Jestem jaki jestem
|
|
|
|
aryS |
Dodany dnia 25.12.2009 12:30:22
|
Przedszkolak
Postów: 12
Data rejestracji: 19.03.2008 21:31
|
Nadal nie wiem jak nazwać ten temat, ale dzięki , zmiana opcji na wyświetlanie w jednej kolumnie pomogło. |
|
|
|
Pieka |
Dodany dnia 25.12.2009 12:34:39
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
Czy ja mam was uczyc nawet opisywania wlasnych problemow?
Przyklady:
1. Po dodaniu trzeciego newsa reszta wyświetla się pod nim w dwóch kolumnach
2. Po dodaniu trzeciego newsa wyświetla się on na całej szerokości strony
3. Trzeci news rozciąga się na całą szerokość strony
Edytowane przez Pieka dnia 25.12.2009 12:37:35
Jestem jaki jestem
|
|
|