Navigacija

Vartotojų tinkle

Prisijungusių svečių: 31
Prisijungusių narių: 0
Prisijungusių narių nėra

Registruoti nariai: 25,959
Naujausias narys: Simbijanas

Naujausi straipsniai

Paskutiniai nariai

Audrius_17 2 savaitės
Reikalas 7 savaitės
Simbijanas14 savaitės
Karinacraft15 savaitės
Žmogus18 savaitės
Bruksnys22 savaitės
Darexs25 savaitės
Nepas26 savaitės
keistuole28 savaitės
Gizmis29 savaitės
Rytis39 savaitės
MaFetas43 savaitės
ozzWANTED44 savaitės
saulyzas46 savaitės
TOMIJUS47 savaitės
Jaunelis63 savaitės
lanis63 savaitės
And2s64 savaitės
Memento Mori69 savaitės
Quwqkibor71 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 216.73.216.35
Naujienų: 529
Straipsnių: 235
Temų: 52,589
Postų: 522,547
Postų pask. parą: 0
Shout'ų pask. parą: 0
P.S.C. pask. parą: 0
Nuorodų kataloge: 13

Lankomumo Statistika

Peržiūrų šiandien: 22

Iš viso peržiūrų: 22948724

Prisijungti

REGISTRUOTIS
Nario vardas

Slaptažodis



Pamiršai slaptažodį?
Paprašyk naujo

Aktyvuoti save

Šaukykla

Jei norite rašyti žinutes, turite prisijungti.

Žmogus
2025 Geg. 31 10:05:18
Kas geresnio? šypsosi

Nepas
2025 Bal. 9 17:04:13
drovus

Nepas
2025 Bal. 9 17:04:08
drovus

Gizmis
2025 Kov. 15 14:03:50
OMG, smagu matyt sita puslapi veikianti

ozzWANTED
2024 Lap. 30 15:11:14
Taip, vis dar up šypsosi

Šaukyklos archyvas

Apklausa

Ar esate patenkinti lietuviško vertimo kokybe?

Taip!

Taip, bet yra ką taisyti (parašysiu komentaruose)

Ne

Norėdamas balsuoti turite prisijungti.
Archyvas
Reklama 400x60
Kitoks adresas
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Bendri PHP-F klausimai

Autorius: Deiviux.eu Peržiūrų: 988      Spausdinti temą
2009 Spa. 7 18:10:38          1 žinutė iš 4
Spausdinti pranešimą
Sveiki, gal galite padaryti ant šio failo kuris yra V7 versija kad būtų ne viewpage.php?page_id=1 o viewpage.php?puslapis=1

Iš anksto dėkui.


<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: viewpage.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";
require_once INCLUDES."comments_include.php";
require_once INCLUDES."ratings_include.php";
include LOCALE.LOCALESET."custom_pages.php";

if (!isset($_GET['page_id']) || !isnum($_GET['page_id'])) { redirect("index.php"); }
if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }

$cp_result = dbquery("SELECT * FROM ".DB_CUSTOM_PAGES." WHERE page_id='".$_GET['page_id']."'");
if (dbrows($cp_result)) {
   $cp_data = dbarray($cp_result);
   add_to_title($locale['global_200'].$cp_data['page_title']);
   opentable($cp_data['page_title']);
   if (checkgroup($cp_data['page_access'])) {
      ob_start();
      eval("?>".stripslashes($cp_data['page_content'])."<?php ");
      $custompage = ob_get_contents();
      ob_end_clean();
      if ($settings['tinymce_enabled']) {
         $custompage = explode("<!-- pagebreak -->", $custompage);
         $pagecount = count($custompage);
         echo $custompage[$_GET['rowstart']];
         if ($pagecount > 1) {
            echo "<div align='center' style='margin-top:5px;'>\n".makepagenav($_GET['rowstart'], 1, $pagecount, 3, FUSION_SELF."?page_id=".$_GET['page_id']."&amp;")."\n</div>\n";
         }
      } else {
         echo $custompage;
      }
   } else {
      echo "<div style='text-align:center'><br />\n".$locale['400']."\n<br /><br /></div>\n";
   }
} else {
   add_to_title($locale['global_200'].$locale['401']);
   opentable($locale['401']);
   echo "<div style='text-align:center'><br />\n".$locale['402']."\n<br /><br /></div>\n";
}
closetable();
if (dbrows($cp_result) && checkgroup($cp_data['page_access'])) {
   if ($cp_data['page_allow_comments']) { showcomments("C", DB_CUSTOM_PAGES, "page_id", $_GET['page_id'],FUSION_SELF."?page_id=".$_GET['page_id']); }
   if ($cp_data['page_allow_ratings']) { showratings("C", $_GET['page_id'], FUSION_SELF."?page_id=".$_GET['page_id']); }
}

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





2009 Spa. 7 18:10:06          2 žinutė iš 4
Spausdinti pranešimą
Bandyk visur šiame faile kur yra page_id pakeisti į puslapis. šypsosi
2009 Spa. 7 18:10:30          3 žinutė iš 4
Spausdinti pranešimą
Bandžiau - nėjo.

2009 Spa. 7 18:10:57          4 žinutė iš 4
Spausdinti pranešimą
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: viewpage.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";
require_once INCLUDES."comments_include.php";
require_once INCLUDES."ratings_include.php";
include LOCALE.LOCALESET."custom_pages.php";
$page_id = $_GET['puslapis'];
if (!isset($page_id) || !isnum($page_id)) { redirect("index.php"); }
if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }

$cp_result = dbquery("SELECT * FROM ".DB_CUSTOM_PAGES." WHERE page_id='".$page_id."'");
if (dbrows($cp_result)) {
   $cp_data = dbarray($cp_result);
   add_to_title($locale['global_200'].$cp_data['page_title']);
   opentable($cp_data['page_title']);
   if (checkgroup($cp_data['page_access'])) {
      ob_start();
      eval("?>".stripslashes($cp_data['page_content'])."<?php ");
      $custompage = ob_get_contents();
      ob_end_clean();
      if ($settings['tinymce_enabled']) {
         $custompage = explode("<!-- pagebreak -->", $custompage);
         $pagecount = count($custompage);
         echo $custompage[$_GET['rowstart']];
         if ($pagecount > 1) {
            echo "<div align='center' style='margin-top:5px;'>\n".makepagenav($_GET['rowstart'], 1, $pagecount, 3, FUSION_SELF."?page_id=".$page_id."&amp;")."\n</div>\n";
         }
      } else {
         echo $custompage;
      }
   } else {
      echo "<div style='text-align:center'><br />\n".$locale['400']."\n<br /><br /></div>\n";
   }
} else {
   add_to_title($locale['global_200'].$locale['401']);
   opentable($locale['401']);
   echo "<div style='text-align:center'><br />\n".$locale['402']."\n<br /><br /></div>\n";
}
closetable();
if (dbrows($cp_result) && checkgroup($cp_data['page_access'])) {
   if ($cp_data['page_allow_comments']) { showcomments("C", DB_CUSTOM_PAGES, "page_id", $page_id,FUSION_SELF."?puslapis=".$page_id); }
   if ($cp_data['page_allow_ratings']) { showratings("C", $page_id, FUSION_SELF."?puslapis=".$page_id); }
}

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






http://androider.info/
Peršokti į forumą: