PHP-Fusion Mods
Navigacija
Apsauga
Apsauga Neleista registracija: 39713
Šiandien: 26
Prisijungę nariai
» Svečių: 12
» Narių: 0

» Viso narių: 10,235
» Naujausias: ruslanas tuk

Prisijungimų istorija:
Zbigniew@senokai
tabuxnepamenu
sanpernepamenu
CepelinasXnepamenu
VV91DDnepamenu
Minusnepamenu
priezilviciunepamenu
EdvinasG1337nepamenu
rolandas94nepamenu
Edis2nepamenu
klubogerbejasnepamenu
Miskinisnepamenu
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.

2026-05-11 16:51
Sveiki. Norėjau pasveikinti jus su atkaklumu arba ištverme. Tai viena iš dviejų paskutinių svetainių, paremtų v7. Ar negaila švaistyti ilgametės patirties ir pereiti prie v9?

2026-03-21 19:07

2025-07-13 17:07
svx, smagu kad dar atsiranda naujų narių Šypsosi2

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

Shoutbox Archive
Peržiūrėti temą
 Spausdinti temą
v7 Filmai tik nariams
diabloo
#1 Spausdinti pranešimą
parašyta 2011-06-14 20:02
Naujokas



Reputacija: 0

Pranešimai: 9
Įstojo: 2010-08-12

gal zinot kaip apdaryti kad kai svecias paspaustu ant filmo rodytu stai ka:

www.part.lt/img/5589101c5d095d1cd8348b09533549e8862.png
 
PM
Wyciokazz
#2 Spausdinti pranešimą
parašyta 2011-06-14 20:30
Vartotojo avataras

Administratorius



Reputacija: 1

Pranešimai: 2108
Įstojo: 2008-02-27

If (iGUEST) {

echo "Filmai tik nariams";
} else {

echo "Filmas";
}

Kam kurti tai kas jau sukurta.

Nesu ekstrasensas ar dar koks čigonas tad iš nieko negaliu suprast kur bėda.

[img]http://27.media.tumblr.com/tumblr_m3hdwudgjG1rteofuo1_500.gif[/img]
 
PM
diabloo
#3 Spausdinti pranešimą
parašyta 2011-06-14 20:33
Naujokas



Reputacija: 0

Pranešimai: 9
Įstojo: 2010-08-12

Tai gal galetum parodyti kaip atrodytu sitam news.php ?
Download source  Code

/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: news.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/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once \"maincore.php\";
require_once THEMES.\"templates/header.php\";

// Predefined variables, do not edit these values
$i = 0;

// Number of news displayed
$items_per_page = $settings['newsperpage'];

add_to_title($locale['global_200'].$locale['global_077']);

if (!isset($_GET['readmore']) || !isnum($_GET['readmore'])) {
   $rows = dbcount(
      \"(news_id)\",
      DB_NEWS,
      groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\")
                              AND (news_end='0'||news_end>=\".time().\")
                              AND news_draft='0'\"
   );
   if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
   if ($rows) {
      $result = dbquery(
         \"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status
         FROM \".DB_NEWS.\" tn
         LEFT JOIN \".DB_USERS.\" tu ON tn.news_name=tu.user_id
         LEFT JOIN \".DB_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().\") AND news_draft='0'
         GROUP BY news_id
         ORDER BY news_sticky DESC, news_datestamp DESC LIMIT \".$_GET['rowstart'].\",\".$items_per_page
      );
      $numrows = dbrows($result);
      while ($data = dbarray($result)) {
         $i++;
         $comments = dbcount(\"(comment_id)\", DB_COMMENTS.\" WHERE comment_type='N' AND comment_hidden='0' AND comment_item_id='\".$data['news_id'].\"'\");
         $news_cat_image = \"\";
         $news_subject = \"\".stripslashes($data['news_subject']);
         $news_cat_image = \"                                                             : FUSION_SELF.\"?readmore=\".$data['news_id'] ).\"'>\";
         if ($data['news_image_t2'] && $settings['news_image_frontpage'] == 0) {
            $news_cat_image .= \"'\".$data['news_subject'].\"'
\";
         } elseif ($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_info = array(
            \"news_id\" => $data['news_id'],
            \"user_id\" => $data['user_id'],
            \"user_name\" => $data['user_name'],
            \"user_status\" => $data['user_status'],
            \"news_date\" => $data['news_datestamp'],
            \"cat_id\" => $data['news_cat'],
            \"cat_name\" => $data['news_cat_name'],
            \"cat_image\" => $news_cat_image,
            \"news_subject\" => $data['news_subject'],
            \"news_ext\" => $data['news_extended'] ? \"y\" : \"n\",
            \"news_reads\" => $data['news_reads'],
            \"news_comments\" => $comments,
            \"news_allow_comments\" => $data['news_allow_comments'],
            \"news_sticky\" => $data['news_sticky']
         );

         echo \"\n\";
         render_news($news_subject, $news_news, $news_info);
      }
      echo \"\n\";
      if ($rows > $items_per_page) echo \"
\n\".makepagenav($_GET['rowstart'],$items_per_page,$rows,3).\"\n
\n\";
   } else {
      opentable($locale['global_077']);
      echo \"

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

\n
\n\";
      closetable();
   }
} else {
   $result = dbquery(
      \"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status FROM \".DB_NEWS.\" tn
      LEFT JOIN \".DB_USERS.\" tu ON tn.news_name=tu.user_id
      LEFT JOIN \".DB_NEWS_CATS.\" tc ON tn.news_cat=tc.news_cat_id
      WHERE \".groupaccess('news_visibility').\" AND news_id='\".$_GET['readmore'].\"' AND news_draft='0'
      LIMIT 1\"
   );
   if (dbrows($result)) {
      include INCLUDES.\"comments_include.php\";
      include INCLUDES.\"ratings_include.php\";
      $data = dbarray($result);
      if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
         $result2 = dbquery(\"UPDATE \".DB_NEWS.\" SET news_reads=news_reads+1 WHERE news_id='\".$_GET['readmore'].\"'\");
         $data['news_reads']++;
      }
      $news_cat_image = \"\";
      $news_subject = $data['news_subject'];
      if ($data['news_image_t1'] && $settings['news_image_readmore'] == \"0\") {
         $img_size = @getimagesize(IMAGES_N.$data['news_image']);
         $news_cat_image = \">'\".$data['news_subject'].\"'\";
      } elseif ($data['news_cat_image']) {
         $news_cat_image = \"'\".$data['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); }
      $news_info = array(
         \"news_id\" => $data['news_id'],
         \"user_id\" => $data['user_id'],
         \"user_name\" => $data['user_name'],
         \"user_status\" => $data['user_status'],
         \"news_date\" => $data['news_datestamp'],
         \"cat_id\" => $data['news_cat'],
         \"cat_name\" => $data['news_cat_name'],
         \"cat_image\" => $news_cat_image,
         \"news_subject\" => $data['news_subject'],
         \"news_ext\" => \"n\",
         \"news_reads\" => $data['news_reads'],
         \"news_comments\" => dbcount(\"(comment_id)\", DB_COMMENTS, \"comment_type='N' AND comment_item_id='\".$data['news_id'].\"' AND comment_hidden='0'\"),
         \"news_allow_comments\" => $data['news_allow_comments'],
         \"news_sticky\" => $data['news_sticky']
      );
      add_to_title($locale['global_201'].$news_subject);
      echo \"\";
      render_news($news_subject, $news_news, $news_info);
      echo \"\";
      if ($data['news_allow_comments']) { showcomments(\"N\", DB_NEWS, \"news_id\", $_GET['readmore'], FUSION_SELF.\"?readmore=\".$_GET['readmore']); }
      if ($data['news_allow_ratings']) { showratings(\"N\", $_GET['readmore'], FUSION_SELF.\"?readmore=\".$_GET['readmore']); }
   } else {
      redirect(FUSION_SELF);
   }
}

require_once THEMES.\"templates/footer.php\";
?>




 
PM
szarunas
#4 Spausdinti pranešimą
parašyta 2011-06-14 22:29
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 85
Įstojo: 2009-12-25

Mhuaaah Nustebau i?vyds savo svetains img :D Tai geras pliusas rei?kiasi :D
WwW.KarCiaMa.CoM - Portalas turintis savo unikali praeit,dabart , bei ateit :)
 
PM
Wyciokazz
#5 Spausdinti pranešimą
parašyta 2011-06-15 12:06
Vartotojo avataras

Administratorius



Reputacija: 1

Pranešimai: 2108
Įstojo: 2008-02-27

Download source  Code
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fu...
+--------------------------------------------------------+
| Filename: news.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).
+--------------------------------------------------------*/
require_once \"maincore.php\";
require_once THEMES.\"templates/header.php\";

// Predefined variables, do not edit these values
$i = 0;

// Number of news displayed
$items_per_page = $settings['newsperpage'];

add_to_title($locale['global_200'].$locale['global_077']);

if (!isset($_GET['readmore']) || !isnum($_GET['readmore'])) {
   $rows = dbcount(
      \"(news_id)\",
      DB_NEWS,
      groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\")
                              AND (news_end='0'||news_end>=\".time().\")
                              AND news_draft='0'\"
   );
   if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
   if ($rows) {
      $result = dbquery(
         \"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status
         FROM \".DB_NEWS.\" tn
         LEFT JOIN \".DB_USERS.\" tu ON tn.news_name=tu.user_id
         LEFT JOIN \".DB_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().\") AND news_draft='0'
         GROUP BY news_id
         ORDER BY news_sticky DESC, news_datestamp DESC LIMIT \".$_GET['rowstart'].\",\".$items_per_page
      );
      $numrows = dbrows($result);
      while ($data = dbarray($result)) {
         $i++;
         $comments = dbcount(\"(comment_id)\", DB_COMMENTS.\" WHERE comment_type='N' AND comment_hidden='0' AND comment_item_id='\".$data['news_id'].\"'\");
         $news_cat_image = \"\";
         $news_subject = \"\".stripslashes($data['news_subject']);
         $news_cat_image = \"                                                             : FUSION_SELF.\"?readmore=\".$data['news_id'] ).\"'>\";
         if ($data['news_image_t2'] && $settings['news_image_frontpage'] == 0) {
            $news_cat_image .= \"'\".$data['news_subject'].\"'
\";
         } elseif ($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_info = array(
            \"news_id\" => $data['news_id'],
            \"user_id\" => $data['user_id'],
            \"user_name\" => $data['user_name'],
            \"user_status\" => $data['user_status'],
            \"news_date\" => $data['news_datestamp'],
            \"cat_id\" => $data['news_cat'],
            \"cat_name\" => $data['news_cat_name'],
            \"cat_image\" => $news_cat_image,
            \"news_subject\" => $data['news_subject'],
            \"news_ext\" => $data['news_extended'] ? \"y\" : \"n\",
            \"news_reads\" => $data['news_reads'],
            \"news_comments\" => $comments,
            \"news_allow_comments\" => $data['news_allow_comments'],
            \"news_sticky\" => $data['news_sticky']
         );

         echo \"\n\";
         render_news($news_subject, $news_news, $news_info);
      }
      echo \"\n\";
      if ($rows > $items_per_page) echo \"
\n\".makepagenav($_GET['rowstart'],$items_per_page,$rows,3).\"\n
\n\";
   } else {
      opentable($locale['global_077']);
      echo \"

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

\n
\n\";
      closetable();
   }
} else {
if (iGUEST) {
echo \"Nebk nachalas u?siregink\";
} else {

   $result = dbquery(
      \"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status FROM \".DB_NEWS.\" tn
      LEFT JOIN \".DB_USERS.\" tu ON tn.news_name=tu.user_id
      LEFT JOIN \".DB_NEWS_CATS.\" tc ON tn.news_cat=tc.news_cat_id
      WHERE \".groupaccess('news_visibility').\" AND news_id='\".$_GET['readmore'].\"' AND news_draft='0'
      LIMIT 1\"
   );
   if (dbrows($result)) {
      include INCLUDES.\"comments_include.php\";
      include INCLUDES.\"ratings_include.php\";
      $data = dbarray($result);
      if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
         $result2 = dbquery(\"UPDATE \".DB_NEWS.\" SET news_reads=news_reads+1 WHERE news_id='\".$_GET['readmore'].\"'\");
         $data['news_reads']++;
      }
      $news_cat_image = \"\";
      $news_subject = $data['news_subject'];
      if ($data['news_image_t1'] && $settings['news_image_readmore'] == \"0\") {
         $img_size = @getimagesize(IMAGES_N.$data['news_image']);
         $news_cat_image = \">'\".$data['news_subject'].\"'\";
      } elseif ($data['news_cat_image']) {
         $news_cat_image = \"'\".$data['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); }
      $news_info = array(
         \"news_id\" => $data['news_id'],
         \"user_id\" => $data['user_id'],
         \"user_name\" => $data['user_name'],
         \"user_status\" => $data['user_status'],
         \"news_date\" => $data['news_datestamp'],
         \"cat_id\" => $data['news_cat'],
         \"cat_name\" => $data['news_cat_name'],
         \"cat_image\" => $news_cat_image,
         \"news_subject\" => $data['news_subject'],
         \"news_ext\" => \"n\",
         \"news_reads\" => $data['news_reads'],
         \"news_comments\" => dbcount(\"(comment_id)\", DB_COMMENTS, \"comment_type='N' AND comment_item_id='\".$data['news_id'].\"' AND comment_hidden='0'\"),
         \"news_allow_comments\" => $data['news_allow_comments'],
         \"news_sticky\" => $data['news_sticky']
      );
      add_to_title($locale['global_201'].$news_subject);
      echo \"\";
      render_news($news_subject, $news_news, $news_info);
      echo \"\";
      if ($data['news_allow_comments']) { showcomments(\"N\", DB_NEWS, \"news_id\", $_GET['readmore'], FUSION_SELF.\"?readmore=\".$_GET['readmore']); }
      if ($data['news_allow_ratings']) { showratings(\"N\", $_GET['readmore'], FUSION_SELF.\"?readmore=\".$_GET['readmore']); }
   } else {
      redirect(FUSION_SELF);
   }
}
}

require_once THEMES.\"templates/footer.php\";
?>




Kam kurti tai kas jau sukurta.

Nesu ekstrasensas ar dar koks čigonas tad iš nieko negaliu suprast kur bėda.

[img]http://27.media.tumblr.com/tumblr_m3hdwudgjG1rteofuo1_500.gif[/img]
 
PM
diabloo
#6 Spausdinti pranešimą
parašyta 2011-06-15 13:05
Naujokas



Reputacija: 0

Pranešimai: 9
Įstojo: 2010-08-12

O kaip apdaryti mygtukus kad butu iskart prisiregistruoti ?
 
PM
Wyciokazz
#7 Spausdinti pranešimą
parašyta 2011-06-15 19:23
Vartotojo avataras

Administratorius



Reputacija: 1

Pranešimai: 2108
Įstojo: 2008-02-27

nu cia html pasistudijuok.
Kam kurti tai kas jau sukurta.

Nesu ekstrasensas ar dar koks čigonas tad iš nieko negaliu suprast kur bėda.

[img]http://27.media.tumblr.com/tumblr_m3hdwudgjG1rteofuo1_500.gif[/img]
 
PM
szarunas
#8 Spausdinti pranešimą
parašyta 2011-06-17 14:33
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 85
Įstojo: 2009-12-25

diablo tu gal pirma i?mok bent pagrindus tada ka?ko pra?yk :D Jau net toki dalyk nemoki tai a? neturiu k pasakyt :D
WwW.KarCiaMa.CoM - Portalas turintis savo unikali praeit,dabart , bei ateit :)
 
PM
DJ Storm
#9 Spausdinti pranešimą
parašyta 2011-06-18 00:50
Vartotojo avataras

Pradinukas



Reputacija: 0

Pranešimai: 42
Įstojo: 2011-01-22

Toks kaip foto

Download source  Code
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fu...
+--------------------------------------------------------+
| Filename: news.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).
+--------------------------------------------------------*/
require_once \"maincore.php\";
require_once THEMES.\"templates/header.php\";

// Predefined variables, do not edit these values
$i = 0;

// Number of news displayed
$items_per_page = $settings['newsperpage'];

add_to_title($locale['global_200'].$locale['global_077']);

if (!isset($_GET['readmore']) || !isnum($_GET['readmore'])) {
   $rows = dbcount(
      \"(news_id)\",
      DB_NEWS,
      groupaccess('news_visibility').\" AND (news_start='0'||news_start<=\".time().\")
                              AND (news_end='0'||news_end>=\".time().\")
                              AND news_draft='0'\"
   );
   if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
   if ($rows) {
      $result = dbquery(
         \"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status
         FROM \".DB_NEWS.\" tn
         LEFT JOIN \".DB_USERS.\" tu ON tn.news_name=tu.user_id
         LEFT JOIN \".DB_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().\") AND news_draft='0'
         GROUP BY news_id
         ORDER BY news_sticky DESC, news_datestamp DESC LIMIT \".$_GET['rowstart'].\",\".$items_per_page
      );
      $numrows = dbrows($result);
      while ($data = dbarray($result)) {
         $i++;
         $news_cat_image = \"\";
         $news_subject = \"\".stripslashes($data['news_subject']);
         $news_cat_image = \"                                                             : FUSION_SELF.\"?readmore=\".$data['news_id'] ).\"'>\";
         if ($data['news_image_t2'] && $settings['news_image_frontpage'] == 0) {
            $news_cat_image .= \"'\".$data['news_subject'].\"'
\";
         } elseif ($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_info = array(
            \"news_id\" => $data['news_id'],
            \"user_id\" => $data['user_id'],
            \"user_name\" => $data['user_name'],
            \"user_status\" => $data['user_status'],
            \"news_date\" => $data['news_datestamp'],
            \"cat_id\" => $data['news_cat'],
            \"cat_name\" => $data['news_cat_name'],
            \"cat_image\" => $news_cat_image,
            \"news_subject\" => $data['news_subject'],
            \"news_ext\" => $data['news_extended'] ? \"y\" : \"n\",
            \"news_reads\" => $data['news_reads'],
            \"news_comments\" => $comments,
            \"news_allow_comments\" => $data['news_allow_comments'],
            \"news_sticky\" => $data['news_sticky']
         );

         echo \"\n\";
         render_news($news_subject, $news_news, $news_info);
      }
      echo \"\n\";
      if ($rows > $items_per_page) echo \"
\n\".makepagenav($_GET['rowstart'],$items_per_page,$rows,3).\"\n
\n\";
   } else {
      opentable($locale['global_077']);
      echo \"

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

\n
\n\";
      closetable();
   }
} else {
if (iGUEST) {
echo \"

Tik nariams!

Registruotis | Prisijungti

\";
} else {

   $result = dbquery(
      \"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status FROM \".DB_NEWS.\" tn
      LEFT JOIN \".DB_USERS.\" tu ON tn.news_name=tu.user_id
      LEFT JOIN \".DB_NEWS_CATS.\" tc ON tn.news_cat=tc.news_cat_id
      WHERE \".groupaccess('news_visibility').\" AND news_id='\".$_GET['readmore'].\"' AND news_draft='0'
      LIMIT 1\"
   );
   if (dbrows($result)) {
      include INCLUDES.\"comments_include.php\";
      include INCLUDES.\"ratings_include.php\";
      $data = dbarray($result);
      if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
         $result2 = dbquery(\"UPDATE \".DB_NEWS.\" SET news_reads=news_reads+1 WHERE news_id='\".$_GET['readmore'].\"'\");
         $data['news_reads']++;
      }
      $news_cat_image = \"\";
      $news_subject = $data['news_subject'];
      if ($data['news_image_t1'] && $settings['news_image_readmore'] == \"0\") {
         $img_size = @getimagesize(IMAGES_N.$data['news_image']);
         $news_cat_image = \">'\".$data['news_subject'].\"'\";
      } elseif ($data['news_cat_image']) {
         $news_cat_image = \"'\".$data['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); }
      $news_info = array(
         \"news_id\" => $data['news_id'],
         \"user_id\" => $data['user_id'],
         \"user_name\" => $data['user_name'],
         \"user_status\" => $data['user_status'],
         \"news_date\" => $data['news_datestamp'],
         \"cat_id\" => $data['news_cat'],
         \"cat_name\" => $data['news_cat_name'],
         \"cat_image\" => $news_cat_image,
         \"news_subject\" => $data['news_subject'],
         \"news_ext\" => \"n\",
         \"news_reads\" => $data['news_reads'],
         \"news_allow_comments\" => $data['news_allow_comments'],
         \"news_sticky\" => $data['news_sticky']
      );
      add_to_title($locale['global_201'].$news_subject);
      echo \"\";
      render_news($news_subject, $news_news, $news_info);
      echo \"\";
      if ($data['news_allow_comments']) { showcomments(\"N\", DB_NEWS, \"news_id\", $_GET['readmore'], FUSION_SELF.\"?readmore=\".$_GET['readmore']); }
      if ($data['news_allow_ratings']) { showratings(\"N\", $_GET['readmore'], FUSION_SELF.\"?readmore=\".$_GET['readmore']); }
   } else {
      redirect(FUSION_SELF);
   }
}
}

require_once THEMES.\"templates/footer.php\";
?>



 
PM
timas126
#10 Spausdinti pranešimą
parašyta 2011-06-18 11:41
Naujokas



Reputacija: 0

Pranešimai: 1
Įstojo: 2010-12-17

sveiki gal kas moket ir ant pimped fusion news.php ta koda imesti, buciau laba dekingas:) Šypsosi



/*---------------------------------------------------------------------------+
| Pimped-Fusion Content Management System
| Copyright (C) 2009 - 2010
| http://www.pimped-fusion.net
+----------------------------------------------------------------------------+
| Filename: news.php
| Version: Pimped Fusion v0.09.00
+----------------------------------------------------------------------------+
| based on PHP-Fusion CMS v7.01 by Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------------------------------+
| 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/licenses/agpl.html. Removal of this copyright header is
| strictly prohibited without written permission from the original author(s).
+---------------------------------------------------------------------------*/
require_once "maincore.php";
require_once TEMPLATES."header.php";

if($settings['enable_lightbox'] == "1") require_once INCLUDES."lightbox/lightbox_head.php";

// 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; }

add_to_title($locale['global_200'].$locale['global_077']);
add_newscatimages();

if (!isset($_GET['readmore']) || !isnum($_GET['readmore'])) {
if(IF_MULTI_LANGUAGE) {
$tnresult = dbquery("SELECT count(tn.news_id) FROM ".DB_NEWS." tn
LEFT OUTER JOIN ".DB_NEWS_CATS." tc ON tn.news_cat=tc.news_cat_id
WHERE ".groupaccess('tn.news_visibility')." AND (tn.news_start='0'||tn.news_start<=".time().") AND (tn.news_end='0'||tn.news_end>=".time().")
AND tn.news_draft='0' AND ((tc.news_cat_language='all' OR tc.news_cat_language='".LANGUAGE."') OR tn.news_cat='0')");
$rows = dbresult($tnresult,0);
} else {
$rows = dbcount("(news_id)", DB_NEWS, groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND
(news_end='0'||news_end>=".time().") AND news_draft='0' ");
}
if (!isset($_GET['page']) || !isnum($_GET['page'])) { $_GET['page'] = 0; }
$rowstart = $_GET['page'] > 0 ? ($_GET['page']-1) * $settings['newsperpage'] : "0";

if ($rows) {
$result = dbquery("SELECT tn.news_id, tn.news_cat, news_subject, news_image_t2, news_news,
news_extended, news_breaks, news_datestamp, news_reads, news_sticky, news_allow_comments,
tc.news_cat_id, tc.news_cat_name, tc.news_cat_image,
tu.user_id, tu.user_name, tu.user_status
FROM ".DB_NEWS." tn
LEFT JOIN ".DB_USERS." tu ON tn.news_name=tu.user_id
LEFT JOIN ".DB_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().") AND news_draft='0'
".(!(bool)IF_MULTI_LANGUAGE ? '':" AND ((tc.news_cat_language='all' OR tc.news_cat_language='".LANGUAGE."') OR tn.news_cat='0')")."
ORDER BY news_sticky DESC, news_datestamp DESC LIMIT ".(int)$rowstart.",".(int)$settings['newsperpage']);
$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'] == "0") {
$seo_newscatname = "no defined category";
} else {
$seo_newscatname = $data['news_cat_name'];
}
$news_cat_image = "";
if ($data['news_image_t2'] && $settings['news_image_frontpage'] == 0) {
$news_cat_image .= "'".$data['news_subject']."'
";
} elseif ($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']);
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'],
"user_status" => $data['user_status'],
"news_date" => $data['news_datestamp'],
"news_subject" => $data['news_subject'],
"cat_id" => $data['news_cat'],
"cat_name" => $data['news_cat_name'],
"news_ext" => $data['news_extended'] ? "y" : "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)",DB_COMMENTS, "comment_type='N' AND comment_item_id='".$data['news_id']."' AND comment_hidden='0'"),
"news_allow_comments" => $data['news_allow_comments'],
"news_sticky" => $data['news_sticky']
);
if ($settings['news_style'] == "1") {
render_news_two_columns($news_subject, $news_news, $news_info);
} else {
echo "\n";
$i++;
render_news($news_subject, $news_news, $news_info);
}
}
if ($settings['news_style'] == "1") {
show_news_two_columns();
}
echo "\n";
if ($rows > $settings['newsperpage']) {
echo "
\n";
echo pagination(true,(int)$rowstart,(int)$settings['newsperpage'],(int)$rows,3, "",
SEO_NEWS_P_A,"","",SEO_NEWS_P_B1.SEO_NEWS_P_B2.SEO_NEWS_P_B3,"", "", SEO_NEWS_P_C);
echo "\n
\n";
}
} else {
opentable($locale['global_077']);
echo "

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

\n
\n";
closetable();
}
} else {
$result = dbquery("SELECT tn.news_subject, tn.news_cat, tn.news_image, tn.news_image_t1, tn.news_news, tn.news_extended, tn.news_breaks,
tn.news_datestamp, tn.news_reads, tn.news_sticky, tn.news_keywords, tn.news_allow_comments, tn.news_allow_ratings,
tc.news_cat_id, tc.news_cat_name, tc.news_cat_image, tu.user_id, tu.user_name, tu.user_status
FROM ".DB_NEWS." tn
LEFT JOIN ".DB_USERS." tu ON tn.news_name=tu.user_id
LEFT JOIN ".DB_NEWS_CATS." tc ON tn.news_cat=tc.news_cat_id
WHERE ".groupaccess('news_visibility')." AND news_id='".(int)$_GET['readmore']."' AND news_draft='0'");
if (dbrows($result)) {
$data = dbarray($result);
if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
$result2 = dbquery("UPDATE ".DB_NEWS." SET news_reads=news_reads+1 WHERE news_id='".(int)$_GET['readmore']."'");
$data['news_reads']++;
}
$news_cat_image = "";
$news_subject = $data['news_subject'];
if ($data['news_image_t1'] && $settings['news_image_readmore'] == "0") {
$img_size = @getimagesize(IMAGES_N.$data['news_image']);
$news_cat_image = ">'".$data['news_subject']."'";
} elseif ($data['news_cat_image']) {
$news_cat_image = " SEO_NEWSCAT_A.SEO_NEWSCAT_B1.$data['news_cat'].SEO_NEWSCAT_B2, $data['news_cat_name'], SEO_NEWSCAT_C).
"'>'".$data['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" => (int)$_GET['readmore'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"user_status" => $data['user_status'],
"news_date" => $data['news_datestamp'],
"news_subject" => $data['news_subject'],
"cat_id" => $data['news_cat'],
"cat_name" => $data['news_cat_name'],
"news_ext" => "n",
"news_reads" => $data['news_reads'],
"news_comments" =>
dbcount("(comment_id)", DB_COMMENTS, "comment_type='N' AND comment_item_id='".(int)$_GET['readmore']."' AND comment_hidden='0'"),
"news_allow_comments" => $data['news_allow_comments'],
"news_sticky" => $data['news_sticky']
);
add_to_title($locale['global_201'].$news_subject);
set_meta('keywords', $data['news_keywords'], false);
set_meta('description', trimlink($news_subject, 255), false);
echo "";
render_news($news_subject, $news_news, $news_info);
echo "";
if ($settings['enable_tags']) {
require_once INCLUDES."tag_include.php";
echo show_tags((int)$_GET['readmore'], "N");
}
if ($data['news_allow_comments']) {
require_once INCLUDES."comments_include.php";
showcomments("N", DB_NEWS, "news_id", (int)$_GET['readmore'], FUSION_SELF."?readmore=".(int)$_GET['readmore']);
}
if ($data['news_allow_ratings'] && $settings['ratings_enabled'] == "1") {
require INCLUDES."ratings_include.php";
showratings("N", (int)$_GET['readmore'], FUSION_SELF."?readmore=".(int)$_GET['readmore']);
}
if($settings['sharethis_news']) {
$share_this = "news";
require_once INCLUDES."share_this_include.php";
}
} else {
redirect(FUSION_SELF);
}
}

require_once TEMPLATES."footer.php";
?>
Redagavo timas126 2011-07-20 09:04
 
PM
makler
#11 Spausdinti pranešimą
parašyta 2011-08-18 10:42
Naujokas



Reputacija: 0

Pranešimai: 10
Įstojo: 2011-05-09

O ziurekit kaip ten ta koda isidedi kad tik nariai gali matyti filmus prisijungus paspaudus ant filmo sone senam news.php dar rodo foto o dbr neberodo kaip padaryt kad foto dar roditu atidarius?
 
PM
14mk
#12 Spausdinti pranešimą
parašyta 2011-08-18 20:42
Vartotojo avataras

Savekas



Reputacija: 0

Pranešimai: 156
Įstojo: 2009-06-11

Nieko nesupratau k para?iai :D
http://ManoIP.TK - koks mano i?orinis IP adresas?? eFuturama.lt - ?irk futurama online
 
PM
Deiviuxsz
#13 Spausdinti pranešimą
parašyta 2011-08-18 21:47
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 64
Įstojo: 2011-03-13

tai gal kaip imeti nauja naujiena,turbut nustatai kad matytu tik nariai?Jei nori kad matytu sveciai ta images turi nustatyti matomas: svecias
 
PM
makler
#14 Spausdinti pranešimą
parašyta 2011-08-19 10:57
Naujokas



Reputacija: 0

Pranešimai: 10
Įstojo: 2011-05-09

Na ta prasme pas mane filmai.php padaryta ir kaip ant norimo filmo paveiksliuko paspaudziu ismeta aprasyma filmo visas aprasymas yra bet be paveiksluiuko nors turetu paveiksliukas but.
 
PM
Deiviuxsz
#15 Spausdinti pranešimą
parašyta 2011-08-19 21:28
Vartotojo avataras

Apšylantis



Reputacija: 0

Pranešimai: 64
Įstojo: 2011-03-13

cia viskas priklauso nuo tavo pasirinktos temos,bet cia jau turi taisyti theme.php failiuke kad rodytu tau ta mages
Man taip atrodo:D
 
PM
makler
#16 Spausdinti pranešimą
parašyta 2011-08-19 22:16
Naujokas



Reputacija: 0

Pranešimai: 10
Įstojo: 2011-05-09

.
Redagavo makler 2011-08-21 16:03
 
PM
Peršokti į forumą: