PHP-Fusion Mods
Navigacija
Apsauga
Apsauga Neleista registracija: 28440
Šiandien: 59
Prisijungę nariai
» Svečių: 13
» Narių: 0

» Viso narių: 10,232
» Naujausias: EdvinasG1337

Prisijungimų istorija:
EdvinasG1337 5 Dienos
tabuxnepamenu
rolandas94nepamenu
Zbigniew@nepamenu
Edis2nepamenu
klubogerbejasnepamenu
Miskinisnepamenu
mast3rnepamenu
N1nt3ndnepamenu
Matze1987nepamenu
Piter_NSnepamenu
MariukasRnepamenu
Pask. modai
Prisijungti
Vardas

Slaptažodis



Dar ne narys?
Registruotis.

Pamiršai slaptažodį?
Prašyk naujo!.

Naujausi prašymai
[L] testas
Narių apklausa
Ar dar kuriate tinklalapius?

Ne
Ne
0% [0 Balsai]

Taip
Taip
88% [7 Balsai]

Naudojuosi socialiniais tinklais
Naudojuosi socialiniais tinklais
13% [1 Balsas]

Balsai: 8
Kad galėtum balsuoti, turi prisijungti.
Pradėta: 2022-05-29 19:54
Shoutbox
You must login to post a message.

2024-03-07 22:13
Oj Tabux… apkabinčiau už tą moderatorių 😁

2024-02-22 17:40
Šypsosi2 jo buvo laikai.. Senukai jau mes. Bega laikas greiciau nei noretusi. Smagu matyti kad uzsuka seni nariai, ne as vienas Šypsosi

2024-02-20 22:18
Zodziu.. Nostalgija. Sorry Tabux uz spam’a, netelpa viskas i viena shout’a. 😁

2024-02-20 22:14
Aisku dabar tokie laikai, kai turinio valdymo sistemas valdome one-click principu. Ne kaip seniau kode ieskodavom klaidu, norint moda pasileist.. :D paciam reikdavo susidiegt viska i ftp..

2024-02-20 22:03
Sveiki kolegos 👌 kazkada rasiau greit 11 metu bet ziuriu greit 14 metu. 😄 baisuu, reik ta proga kazka sugalvot su php-f kaip jaunima itraukt.

Shoutbox Archive
Peržiūrėti temą
 Spausdinti temą
skaityti daugiau tik narems
gogozi7
#1 Spausdinti pranešimą
parašyta 2007-08-22 20:32
Vartotojo avataras

Pradinukas



Reputacija: 0

Pranešimai: 38
Įstojo: 2007-07-03

isidejau news.php kad matytu tik narei bet man meta eror ir naujienu nerodo stai eroras ir kodas news.php

Unknown column 'news_sticky' in 'order clause'Unknown column 'news_sticky' in 'order clause'

Download source  Code
/*---------------------------------------------------+
| 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 = \"\".stripslashes($data['news_subject']);
         if ($data['news_cat_image']) {
            $news_cat_image = \"'\".$data['news_cat_name'].\"'\";
         } else {
            $news_cat_image = \"\";
         }
         
         $news_news = $data['news_breaks'] == \"y\" ? nl2br(stripslashes($data['news_news'])) : stripslashes($data['news_news']);
         $news_news .=$news_info['news_ext'] == \"y\" ? \"..... [ \".$locale['042'].\" ]\" : \"\";
         
         
         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] .= \"\n\";
               $news_[0] .= \"\n\n\n\";
               $news_[0] .= \"\n\n\n\";
               $news_[0] .= \"\n\n\n
$news_subject
$news_news
\n\";
               if (checkrights(\"N\")) $news_[0] .= \"
\n\";
               $news_[0] .= \"'' \".$news_info['user_name'].\" \".$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\" ? \"\".$locale['042'].\" \n\" : \"\";
                  $news_[0] .= $news_info['news_allow_comments'] ? \"\".$news_info['news_comments'].$locale['043'].\" \n\" : \"\";
                  $news_[0] .= $news_info['news_reads'].$locale['044'].\" \n\";
               }
               $news_[0] .= \"'\".$locale['045'].\"'\";
               if (checkrights(\"N\")) { $news_[0] .= \" '\".$locale['048'].\"'
\n
\n\"; } else { $news_[0] .= \"\n\"; }
               $news_[0] .= \"
\n\";
               if ($ncount != $rows) $news_[0] .= \"
''
\n\";
            } else {
               if ($i == $nrows && $ncolumn != 2) { $ncolumn = 2; $i = 0; }
               $row_color = ($rc % 2 == 0 ? \"tbl2\" : \"tbl1\");
               $news_[$ncolumn] .= \"\n\";
               $news_[$ncolumn] .= \"\n\n\n\";
               $news_[$ncolumn] .= \"\n\n\n\";
               $news_[$ncolumn] .= \"\n\n\n
$news_subject
$news_news
\n\";
               if (checkrights(\"N\")) $news_[$ncolumn] .= \"
\n\";
               $news_[$ncolumn] .= \"'' \".$news_info['user_name'].\" \".$locale['041'].showdate(\"longdate\", $news_info['news_date']);
               if ($news_info['news_ext'] == \"y\" || $news_info['news_allow_comments']) {
                  $news_[$ncolumn] .= \"
\n\";
                  $news_[$ncolumn] .= $news_info['news_ext'] == \"y\" ? \"\".$locale['042'].\" \n\" : \"\";
                  $news_[$ncolumn] .= $news_info['news_allow_comments'] ? \"\".$news_info['news_comments'].$locale['043'].\" \n\" : \"\";
                  $news_[$ncolumn] .= $news_info['news_reads'].$locale['044'].\" \n\";
               } else {
                  $news_[$ncolumn] .= \" \n\";
               }
               $news_[$ncolumn] .= \"'\".$locale['045'].\"'\n\";
               if (checkrights(\"N\")) { $news_[$ncolumn] .= \" '\".$locale['048'].\"'
\n
\n\"; } else { $news_[$ncolumn] .= \"\n\"; }
               $news_[$ncolumn] .= \"
\n\";
               if ($ncolumn == 1 && $i < ($nrows - 1)) $news_[$ncolumn] .= \"
''
\n\";
               if ($ncolumn == 2 && $i < (dbrows($result) - $nrows - 2)) $news_[$ncolumn] .= \"
''
\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 \"\n\n\n\n\n\n\n\n\n
\n\";
         echo $news_[0];
         echo \"
\n\";
         echo $news_[1];
         echo \"
''\n\";
         echo $news_[2];
         echo \"
\n\";
         closetable();
      }
      if ($rows > $items_per_page) echo \"
\n\".makePageNav($rowstart,$items_per_page,$rows,3).\"\n
\n\";
   } else {
      opentable($locale['046']);
      echo \"

\n\".$locale['047'].\"

\n
\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 = \"'\".$data2['news_cat_name'].\"'\";
            }
         }
         $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\";
?>


 
PM
Peršokti į forumą: