Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,953
Naujausias narys: Quwqkibor

Naujausi straipsniai

Paskutiniai nariai

Memento Mori 6 dienos
ozzWANTED 1 savaitė
Quwqkibor 3 savaitės
asirija 7 savaitės
tomeem 9 savaitės
Reikalas10 savaitės
weberiz12 savaitės
mRokass14 savaitės
kartoonas16 savaitės
iaescortsmap16 savaitės
grunskiz18 savaitės
Bruksnys19 savaitės
illusion19 savaitės
ordo20 savaitės
Jurgaila21 savaitės
originalcs1621 savaitės
Rytis21 savaitės
halis23 savaitės
junkus26 savaitės
morlis26 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 18.118.28.200
Naujienų: 529
Straipsnių: 235
Temų: 52,585
Postų: 522,523
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.

ozzWANTED
2024 Sau. 17 01:01:00
Desperatiškus komentarus šaukykloje su accountu po mėnesio prasibuvimo, ištryniau. Pasaulis ir taip juodas. Įjungiam šviesą, prašviesės. šypsosi

Majakas
2023 Gru. 10 19:12:39
Negaliu patikėti jog žinutės/pranešimai visi yra nuo 2008 m akinanti šypsen

Žmogus
2023 Rugs. 7 21:09:14
O gal BloodKiller pasijungs?

Apocal
2023 Rugs. 2 18:09:23
Nu davai nuveikiam kažką akinanti šypsen. Prisijungti kada visi čia akinanti šypsen.

Apocal
2023 Rugs. 2 00:09:18
Šiaip atėjau pažiūrėti ar dar lopas nesby yra ar koks ten buvo.

Š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
padeit su paieska
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Bendri PHP-F klausimai

Autorius: klaude Peržiūrų: 482      Spausdinti temą
2010 Spa. 6 22:10:10          1 žinutė iš 1
Spausdinti pranešimą
nu sveiki man reijke paneles kad kaip irasai ismeta naujienas paprasciau tarent naujienu paieskoks panele sake man viens kad reijk pasikoregot sercht.php bet neisein gal padetumet man pakoreguot va kodas
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: search.php
| Author: Robert Gaudyn (Wooya)
+--------------------------------------------------------+
| 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";
include LOCALE.LOCALESET."search.php";

add_to_title($locale['global_202']);

if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }

if (isset($_GET['stext'])) { $_GET['stext'] = urlencode(stripinput($_GET['stext'])); }
if (!isset($_GET['stext'])) { $_GET['stext'] = ""; }

if (isset($_GET['method'])) { $_GET['method'] = ($_GET['method']=="OR" || $_GET['method']=="AND") ? $_GET['method'] : "OR"; }
if (!isset($_GET['method'])) { $_GET['method'] = "OR"; }

if (isset($_GET['datelimit'])) { $_GET['datelimit'] = isnum($_GET['datelimit']) ? $_GET['datelimit'] : 0; }
if (!isset($_GET['datelimit'])) { $_GET['datelimit'] = 0; }

if (isset($_GET['fields'])) { $_GET['fields'] = isnum($_GET['fields']) ? $_GET['fields'] : 2; }
if (!isset($_GET['fields'])) { $_GET['fields'] = 2; }

if (isset($_GET['sort'])) { $_GET['sort'] = in_array($_GET['sort'], array("datestamp", "subject", "author")) ? $_GET['sort'] : "datestamp"; }
if (!isset($_GET['sort'])) { $_GET['sort'] = "datestamp"; }

if (isset($_GET['order'])) { $_GET['order'] = isnum($_GET['order']) ? $_GET['order'] : 0; }
if (!isset($_GET['order'])) { $_GET['order'] = 0; }

if (isset($_GET['chars'])) { $_GET['chars'] = isnum($_GET['chars']) ? ($_GET['chars'] > 200 ? 200 : $_GET['chars']) : 50; }
if (!isset($_GET['chars'])) { $_GET['chars'] = 50; }

if (isset($_GET['forum_id'])) { $_GET['forum_id'] = isnum($_GET['forum_id']) ? $_GET['forum_id'] : 0; }
if (!isset($_GET['forum_id'])) { $_GET['forum_id'] = 0; }

$radio_button = array();
$form_elements = array();
$available = array();
$dh = opendir(INCLUDES."search");
while (false !== ($entry = readdir($dh))) {
   if ($entry != "." && $entry != ".." && eregi("include_button.php", $entry)) {
      $available[] = str_replace("search_", "", str_replace("_include_button.php", "", $entry));
   }
}
closedir($dh);
$available[] = "all";

if (isset($_GET['stype'])) { $_GET['stype'] = in_array($_GET['stype'], $available) ? $_GET['stype'] : "articles"; }
if (!isset($_GET['stype'])) { $_GET['stype'] = $settings['default_search']; }

for ($i = 0; $i < count($available) - 1; $i++) {
   include (INCLUDES."search/search_".$available[$i]."_include_button.php");
}
sort($radio_button);

opentable($locale['400']);

echo "<script type='text/javascript'>\n<!--\n";
echo "function display(val) {\nswitch (val) {\n";
foreach ($form_elements as $type => $array1) {
   echo "case '".$type."':\n";
   foreach ($array1 as $what => $array2) {
      foreach ($array2 as $elements => $value) {
         if ($what=="enabled") {
            echo "document.getElementById('".$value."').disabled = false;\n";
         } else if ($what=="disabled") {
            echo "document.getElementById('".$value."').disabled = true;\n";
         } else if ($what=="display") {
            echo "document.getElementById('".$value."').style.display = 'block';\n";
         } else if ($what=="nodisplay") {
            echo "document.getElementById('".$value."').style.display = 'none';\n";
         }
      }
   }
   echo "break;\n";
}
   
echo "case 'all':\n";
echo "document.getElementById('datelimit').disabled = false;\n";
echo "document.getElementById('fields1').disabled = false;\n";
echo "document.getElementById('fields2').disabled = false;\n";
echo "document.getElementById('fields3').disabled = false;\n";
echo "document.getElementById('sort').disabled = false;\n";
echo "document.getElementById('order1').disabled = false;\n";
echo "document.getElementById('order2').disabled = false;\n";
echo "document.getElementById('chars').disabled = false;\n";
echo "break;\n}\n}\n-->\n</script>\n";

echo "<form id='searchform' name='searchform' method='get' action='".FUSION_SELF."'>\n";
echo "<table width='100%' cellpadding='0' cellspacing='1' class='tbl-border'>\n<tr>\n";
echo "<td class='tbl2' colspan='2'><strong>".$locale['401']."</strong></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1' style='width:50%;'>\n";
echo "<input type='text' name='stext' value='".urldecode($_GET['stext'])."' class='textbox' style='width:200px' />\n";
echo "<input type='submit' name='search' value='".$locale['402']."' class='button' />\n</td>\n";
echo "<td class='tbl1' align='left' style='width:50%;'>\n";
echo "<label><input type='radio' name='method' value='OR'".($_GET['method'] == "OR" ? " checked='checked'" : "")." /> ".$locale['403']."</label><br  />\n";
echo "<label><input type='radio' name='method' value='AND'".($_GET['method'] == "AND" ? " checked='checked'" : "")." /> ".$locale['404']."</label></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl2'><strong>".$locale['405']."</strong></td>\n";
echo "<td class='tbl2'><strong>".$locale['406']."</strong></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1'>\n";
echo "<table width='100%' cellpadding='0' cellspacing='0'>\n";
foreach ($radio_button as $key => $value) {
   echo "<tr>\n<td>".$value."</td>\n</tr>\n";
}
echo "<tr>\n";
echo "<td><label><input type='radio' name='stype' value='all'".($_GET['stype'] == "all" ? " checked='checked'" : "")." onclick=\"display(this.value)\" /> ".$locale['407']."</label></td>\n";
echo "</tr>\n</table>\n</td>\n";
echo "<td align='left' valign='top'>\n";
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
echo "<td class='tbl1'>".$locale['420']."</td>\n";
echo "<td class='tbl1'><select id='datelimit' name='datelimit' class='textbox'".($_GET['stype']!="all"?(in_array("datelimit", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"").">\n";
echo "<option value='0'".($_GET['datelimit']==0?" selected='selected'":"").">".$locale['421']."</option>\n";
echo "<option value='86400'".($_GET['datelimit']==86400?" selected='selected'":"").">".$locale['422']."</option>\n";
echo "<option value='604800'".($_GET['datelimit']==604800?" selected='selected'":"").">".$locale['423']."</option>\n";
echo "<option value='1209600'".($_GET['datelimit']==1209600?" selected='selected'":"").">".$locale['424']."</option>\n";
echo "<option value='2419200'".($_GET['datelimit']==2419200?" selected='selected'":"").">".$locale['425']."</option>\n";
echo "<option value='7257600'".($_GET['datelimit']==7257600?" selected='selected'":"").">".$locale['426']."</option>\n";
echo "<option value='14515200'".($_GET['datelimit']==14515200?" selected='selected'":"").">".$locale['427']."</option>\n";
echo "</select></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1'>&nbsp;</td>\n";
echo "<td class='tbl1'><label><input type='radio' id='fields1' name='fields' value='2'".($_GET['fields']==2?" checked='checked'":"").($_GET['stype']!="all"?(in_array("fields1", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"")." /> ".$locale['430']."</label><br  />\n";
echo "<label><input type='radio' id='fields2' name='fields' value='1'".($_GET['fields']==1?" checked='checked'":"").($_GET['stype']!="all"?(in_array("fields2", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"")." /> ".$locale['431']."</label><br  />\n";
echo "<label><input type='radio' id='fields3' name='fields' value='0'".($_GET['fields']==0?" checked='checked'":"").($_GET['stype']!="all"?(in_array("fields3", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"")." /> ".$locale['432']."</label></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1'>".$locale['440']."&nbsp;</td>\n";
echo "<td class='tbl1'><select id='sort' name='sort' class='textbox'".($_GET['stype']!="all"?(in_array("sort", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"").">\n";
echo "<option value='datestamp'".($_GET['sort']=="datestamp"?" selected='selected'":"").">".$locale['441']."</option>\n";
echo "<option value='subject'".($_GET['sort']=="subject"?" selected='selected'":"").">".$locale['442']."</option>\n";
echo "<option value='author'".($_GET['sort']=="author"?" selected='selected'":"").">".$locale['443']."</option>\n";
echo "</select></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1'>&nbsp;</td>\n";
echo "<td class='tbl1'><label><input type='radio' id='order1' name='order' value='0'".($_GET['order']==0?" checked='checked'":"").($_GET['stype']!="all"?(in_array("order1", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"")." /> ".$locale['450']."</label><br  />\n";
echo "<label><input type='radio' id='order2' name='order' value='1'".($_GET['order']==1?" checked='checked'":"").($_GET['stype']!="all"?(in_array("order2", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"")." /> ".$locale['451']."</label><br  /></td>\n";
echo "</tr>\n<tr>\n";
echo "<td class='tbl1'>".$locale['460']."</td>\n";
echo "<td class='tbl1'><select id='chars' name='chars' class='textbox'".($_GET['stype']!="all"?(in_array("chars", $form_elements[$_GET['stype']]['disabled'])?" disabled='disabled'":""):"").">\n";
echo "<option value='50'".($_GET['chars']==50?" selected='selected'":"").">50</option>\n";
echo "<option value='100'".($_GET['chars']==100?" selected='selected'":"").">100</option>\n";
echo "<option value='150'".($_GET['chars']==150?" selected='selected'":"").">150</option>\n";
echo "<option value='200'".($_GET['chars']==200?" selected='selected'":"").">200</option>\n";
echo "</select> ".$locale['461']."</td>\n";
echo "</tr>\n</table>\n";
echo "</td>\n</tr>\n</table>\n</form>\n";
closetable();

function search_striphtmlbbcodes($text) {
   $text = preg_replace("[\[(.*?)\]]", "", $text);
   $text = preg_replace("<\<(.*?)\>>", "", $text);
   return $text;
}

function search_textfrag($text) {
   if ($_GET['chars'] != 0) {
      $text = nl2br(stripslashes(substr($text, 0, $_GET['chars'])."..."));
   } else {
      $text = nl2br(stripslashes($text));
   }
   return $text;
}

function search_stringscount($text) {
   global $swords;
   $count = 0;
   for ($i = 0; $i < sizeof($swords); $i++) {
      $count += substr_count(strtolower($text), strtolower($swords[$i]));
   } 
   return $count;
}

function search_querylike($field) {
   global $swords;
   $querylike = "";
   for ($i = 0; $i < sizeof($swords); $i++) {
      $querylike .= $field." LIKE '%".$swords[$i]."%'".($i < sizeof($swords) - 1 ? " ".$_GET['method']." " : "");
   }
   return $querylike;
}

function search_fieldsvar() {
   $fieldsvar = "(";
   $numargs = func_num_args();
   for ($i = 0; $i < $numargs; $i++) {
      $fieldsvar .= func_get_arg($i).($i < $numargs - 1 ? " || " : "");
   }
   $fieldsvar .= ")";
   return $fieldsvar;
}

function search_globalarray($search_result) {
   global $search_result_array, $global_string_count, $memory_limit;
   $global_string_count += strlen($search_result);
   if ($memory_limit > $global_string_count) {
      $search_result_array[] = $search_result;
      $memory_exhaused = false;
   } else {
      $memory_exhaused = true;
   }
   return $memory_exhaused;
}

function search_navigation($rows) {
   global $site_search_count, $composevars;
   $site_search_count += $rows;
   $navigation_result = "<div align='center' style='margin-top:5px;'>\n".makePageNav($_GET['rowstart'], 10, ($site_search_count > 100 || search_globalarray("") ? 100 : $site_search_count), 3, FUSION_SELF."?stype=".$_GET['stype']."&amp;stext=".urlencode($_GET['stext'])."&amp;".$composevars)."\n</div>\n";
   return $navigation_result;
}

$composevars = "method=".$_GET['method']."&amp;datelimit=".$_GET['datelimit']."&amp;fields=".$_GET['fields']."&amp;sort=".$_GET['sort']."&amp;order=".$_GET['order']."&amp;chars=".$_GET['chars']."&amp;forum_id=".$_GET['forum_id']."&amp;";

$memory_limit = str_replace("m", "", strtolower(ini_get("memory_limit"))) * 1024 * 1024;
$memory_limit = !isnum($memory_limit) ? 8 * 1024 * 1024 : $memory_limit < 8 * 1024 * 1024 ? 8 * 1024 * 1024 : $memory_limit;
$memory_limit = $memory_limit - ceil($memory_limit / 4);
$global_string_count = 0;
$site_search_count = 0;
$search_result_array = array();
$navigation_result = "";
$items_count = "";

$_GET['stext'] = urldecode($_GET['stext']);

if ($_GET['stext'] != "" && strlen($_GET['stext']) >= 3) {
   add_to_title($locale['global_201'].$locale['408']);
   opentable($locale['408']);
   $fswords = explode(" ", $_GET['stext']);
   $swords = array();
   $iwords = array();
   for ($i = 0; $i < sizeof($fswords); $i++) {
      if (strlen($fswords[$i]) >= 3) {
         $swords[] = $fswords[$i];
      } else {
         $iwords[] = $fswords[$i];
      }
   }
   unset($fswords);
   
   if (sizeof($swords) == 0) { redirect(FUSION_SELF); }

   if ($_GET['stype'] == "all") {
      $dh = opendir(INCLUDES."search");
      while (false !== ($entry=readdir($dh))) {
         if ($entry != "." && $entry != ".." && eregi("include.php", $entry)) {
            include (INCLUDES."search/".$entry);
         }
      }
      closedir($dh);
   } else {
      include INCLUDES."search/search_".$_GET['stype']."_include.php";
   }
   
   if (count($iwords)) {
      $txt = "";
      for ($i = 0; $i < count($iwords); $i++) {
         $txt .= $iwords[$i].($i < count($iwords) - 1 ? ", " : "");
      }
      echo "<div style='text-align:center;font-weight:bold'>".sprintf($locale['502'], $txt)."</div><br  />";
   }
   
   if ($_GET['stype'] == "all") {
      $navigation_result = search_navigation(0);
      echo "<div class='quote'>".$items_count."<hr  />".THEME_BULLET."&nbsp;<strong>".(($site_search_count>100 || search_globalarray(""))?sprintf($locale['530'], $site_search_count):$site_search_count." ".$locale['510'])."</strong></div><hr  />";
   } else {
      echo $items_count."<hr  />";
      echo (($site_search_count>100 || search_globalarray("")) ? "<strong>".sprintf($locale['530'], $site_search_count)."</strong><hr  />" : "");
   }
      
   if ($_GET['stype'] == "all") {
      $from = $_GET['rowstart'];
      $to = (count($search_result_array) - ($_GET['rowstart'] + 10)) <= 0 ? count($search_result_array) : $_GET['rowstart'] + 10;
   } else {
      $from = 0;
      $to = count($search_result_array) < 10 ? count($search_result_array) : 10;
   }
   
   for ($i = $from; $i < $to; $i++) {
      echo $search_result_array[$i];
   }
   echo $navigation_result;
   closetable();

} elseif (isset($_GET['stext'])) {
   add_to_title($locale['global_201'].$locale['408']);
   opentable($locale['408']);
   echo $locale['501'];
   closetable();
}

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



iskart dekui


0 atsakymų
Peršokti į forumą: