Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,955
Naujausias narys: Johny

Naujausi straipsniai

Paskutiniai nariai

Johny18:24:41
Reikalas 3 savaitės
Jaunelis10 savaitės
lanis10 savaitės
And2s11 savaitės
Memento Mori16 savaitės
ozzWANTED16 savaitės
Quwqkibor18 savaitės
asirija22 savaitės
tomeem24 savaitės
weberiz27 savaitės
mRokass30 savaitės
kartoonas31 savaitės
iaescortsmap31 savaitės
grunskiz34 savaitės
Bruksnys34 savaitės
illusion34 savaitės
ordo35 savaitės
Jurgaila36 savaitės
originalcs1636 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 3.16.83.126
Naujienų: 529
Straipsnių: 235
Temų: 52,588
Postų: 522,531
Postų pask. parą: 1
Shout'ų pask. parą: 0
P.S.C. pask. parą: 1
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.

Jaunelis
2024 Lie. 25 11:07:43
Oho vis dar veikia svetainė akinanti šypsen Šimtas metų, matau Šaukykloje nuostalgija. Smagu panaršyt po forumą ir pažiūrėt senas temas šypsosi

And2s
2024 Lie. 17 19:07:04
2008 pirmą kart čia patekau, man buvo 10m ir čia pramokau programavimo.. smagu skaityti senas žinutes, tokia nostalgija akinanti šypsen ačiū Ozz kad saugoji šitą kultūrinį reliktą šypsosi

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?

Š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
Neiseina ydeti naujos kategorijos fotoalbume
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Žaliems

Autorius: gremlinaz Peržiūrų: 1044      Spausdinti temą
2008 Bir. 6 23:06:14          1 žinutė iš 4
Spausdinti pranešimą
Noriu sukurti nauja kategorija fotoalbumuose per admin panele. Viska uzpildau, meta error

Fatal error: Call to undefined function createThumbnail() in /usr/home/www/ftp/Gobl1nas/administration/photoalbums.php on line 101




Stai cia 101 eilute
createThumbnail(PHOTOS.basename($album_pic['tmp_name']),PHOTOS."a".$album_id.".jpg",$settings['album_image_w'],$settings['album_image_h']);




Prasau padekite... Jei reikia, cia dar visas photoalbums.php

<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright (c) 2005 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
+----------------------------------------------------+
| Photo Gallery developed by CrappoMan
| email: simonpatterson@dsl.pipex.com
+----------------------------------------------------*/
require_once "../maincore.php";
require_once BASEDIR."subheader.php";
require_once ADMIN."navigation.php";
include LOCALE.LOCALESET."admin/photoalbums.php";

if (!checkrights("PH")) fallback("../index.php");
if (!isset($action)) $action = "";

if(isset($_POST['btn_cancel'])){
   redirect(FUSION_SELF);
}elseif($action=="refresh") {
   $ids_a=array();
   $result_a=dbquery("SELECT album_id FROM ".DB_PREFIX."photo_albums ORDER BY album_order ASC");
   while($data_a=dbarray($result_a)) $ids_a[]=$data_a['album_id'];
   $o_a=1;
   foreach($ids_a as $id_a) {
      dbquery("UPDATE ".DB_PREFIX."photo_albums SET album_order='".$o_a++."' WHERE album_id='{$id_a}'");
      $ids_p=array();
      $result_p=dbquery("SELECT photo_id FROM ".DB_PREFIX."photos WHERE album_id='{$id_a}' ORDER BY photo_order,photo_date,photo_title");
      while($data_p=dbarray($result_p)) $ids_p[]=$data_p['photo_id'];
      $o_p=1;
      foreach($ids_p as $id_p) {
         dbquery("UPDATE ".DB_PREFIX."photos SET photo_order='".$o_p++."' WHERE photo_id='{$id_p}'");
      }
   }
   redirect(FUSION_SELF);
}elseif(($action=="deletealbumpic") && isset($album_id)){
   if(file_exists(PHOTOS."a".$album_id.".jpg")) unlink(PHOTOS."a".$album_id.".jpg");
   redirect(FUSION_SELF."?action=editalbum&album_id=$album_id");
}elseif($action=="deletealbum") {
   if(isset($album_id)){
      $result=dbquery("SELECT * FROM ".$db_prefix."photos WHERE album_id='$album_id'");
      if(dbrows($result)!=0){
         opentable($locale['420']);
         echo "<center><br>".$locale['422']."<br><span class='small'>".$locale['423']."</span><br><br>
<a href='".FUSION_SELF."'>".$locale['429']."</a><br><br>
<a href='index.php'>".$locale['430']."</a><br><br></center>\n";
         closetable();
      }else{
         $odata=dbarray(dbquery("SELECT * FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'"));
         $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=(album_order-1) WHERE album_order>'$odata[album_order]'");
         $result=dbquery("DELETE FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'");
         if(file_exists(PHOTOS."a".$album_id.".jpg")) unlink(PHOTOS."a".$album_id.".jpg");
         redirect(FUSION_SELF);
      }
   }
}elseif(isset($_POST['btn_save_album'])){
   $album_title=stripinput($album_title);
   $album_info=stripinput($album_info);
   $result=dbquery("SELECT * FROM ".$db_prefix."photo_albums WHERE album_title='$album_title' AND album_id<>'$album_id'");
   if(dbrows($result)!=0){
      $error=$locale['424'];
   }else{
      $error="";
      if($action=="editalbum"){
         if($album_order<$album_order2){
            $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=(album_order+1) WHERE album_order>='$album_order' AND album_order<'$album_order2'");
         }elseif($album_order>$album_order2){
            $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=(album_order-1) WHERE album_order>'$album_order2' AND album_order<='$album_order'");
         }
         $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_title='$album_title',album_info='$album_info',album_order='$album_order' WHERE album_id='$album_id'");
      }else{
         if($album_order==""){
            $album_order=dbresult(dbquery("SELECT MAX(album_order) FROM ".$db_prefix."photo_albums"),0)+1;
         }else{
            $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=(album_order+1) WHERE album_order>='$album_order'");
         }
         $result=dbquery("INSERT INTO ".$db_prefix."photo_albums (album_title, album_info, album_order) VALUES ('$album_title', '$album_info', '$album_order')");
      }
      $album_id=dbresult(dbquery("SELECT album_id FROM ".$db_prefix."photo_albums WHERE album_title='$album_title'"),0);
      if(is_uploaded_file($_FILES['album_pic_file']['tmp_name'])){
         $album_pic = $_FILES['album_pic_file'];
         $album_pic_ext = strrchr($album_pic['name'],".");
         if($album_pic['size']>=$settings['album_max_b']){
            $error=sprintf($locale['425'], $settings['album_max_b']);
         }elseif (!eregi(".jpg", $album_pic_ext) && !eregi(".jpeg", $album_pic_ext)) {
            $error=$locale['427'];
         }else{
            if(file_exists(PHOTOS."a".$album_id.".jpg")){unlink(PHOTOS."a".$album_id.".jpg");}
            move_uploaded_file($album_pic['tmp_name'], PHOTOS.basename($album_pic['tmp_name']));
            chmod(PHOTOS.basename($album_pic['tmp_name']),0644);
            $imageFile = @getImageSize(PHOTOS.basename($album_pic['tmp_name']));
            if($imageFile[0]>$settings['album_max_w']||$imageFile[1]>$settings['album_max_h']){
               $error=sprintf($locale['428'], $settings['album_max_w'], $settings['album_max_h']);
               unlink(PHOTOS.basename($album_pic['tmp_name']));
            } else {
               createThumbnail(PHOTOS.basename($album_pic['tmp_name']),PHOTOS."a".$album_id.".jpg",$settings['album_image_w'],$settings['album_image_h']);
               unlink(PHOTOS.basename($album_pic['tmp_name']));
            }
         }
      }
   }
   if($error<>""){
      opentable($locale['420']);
      echo "<center><br><span class='small'>".$locale['421']."</span><br><span class='small'>$error</span><br><br>
<a href='".FUSION_SELF."'>".$locale['429']."</a><br><br>
<a href='".BASEDIR."index.php'>".$locale['430']."</a><br><br></center>\n";
      closetable();
   }else{
      redirect(FUSION_SELF);
   }
}elseif($action=="mup"){
   $data=dbarray(dbquery(
      "SELECT t1.album_id id1, t2.album_id id2
      FROM ".$db_prefix."photo_albums t1 INNER JOIN ".$db_prefix."photo_albums t2
      WHERE t1.album_order = t2.album_order+1 AND t1.album_id = '$album_id'"
   ));
   $id1=$data['id1'];
   $id2=$data['id2'];
   $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order-1 WHERE album_id='$id1'");
   $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order+1 WHERE album_id='$id2'");
   redirect(FUSION_SELF);
}elseif($action=="mdown"){
   $data=dbarray(dbquery(
      "SELECT t1.album_id id1, t2.album_id id2
      FROM ".$db_prefix."photo_albums t1 INNER JOIN ".$db_prefix."photo_albums t2
      WHERE t1.album_order = t2.album_order-1 AND t1.album_id = '$album_id'"
   ));
   $id1=$data['id1'];
   $id2=$data['id2'];
   $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order+1 WHERE album_id='$id1'");
   $result=dbquery("UPDATE ".$db_prefix."photo_albums SET album_order=album_order-1 WHERE album_id='$id2'");
   redirect(FUSION_SELF);
}else{
   if($action=="editalbum"){
      $result=dbquery("SELECT * FROM ".$db_prefix."photo_albums WHERE album_id='$album_id'");
      $data=dbarray($result);
      $album_title=stripslashes($data['album_title']);
      $album_info=stripslashes($data['album_info']);
      $album_order=$data['album_order'];
      opentable($locale['402']);
   }else{
      $album_id = "";
      $album_title = "";
      $album_info = "";
      $album_order = "";
      opentable($locale['403']);
   }
   echo "<form name='frm_add_album' method='post' action='".FUSION_SELF."' enctype='multipart/form-data'>\n";
   if($action=="editalbum"){
      echo "<input type='hidden' name='action' value='editalbum'>
<input type='hidden' name='album_id' value='$album_id'>
<input type='hidden' name='album_order2' value='$album_order'>";
   }
   echo "<table align='center' cellspacing='0' cellpadding='0'>
<tr><td class='tbl'>".$locale['405'].":</td><td class='tbl'><input type='textbox' name='album_title' value=\"$album_title\" maxlength='100' class='textbox' style='width:250px;'></td></tr>
<tr><td valign='top' class='tbl'>".$locale['410'].":</td><td class='tbl'><textarea name='album_info' class='textbox' style='width:250px; height:50px;'>$album_info</textarea></td></tr>
<tr><td class='tbl'>".$locale['408'].":</td><td class='tbl'><input type='textbox' name='album_order' value='$album_order' maxlength='2' class='textbox' style='width: 40px;'><span class='small alt'> (";
   if($action=="editalbum"){
      echo $locale['416'].$album_order;
   }else{
      echo $locale['417'];
   }
   echo ")</span></td></tr><tr><td valign='top' class='tbl'>".$locale['411'].":";
   if(file_exists(PHOTOS."a".$album_id.".jpg")){
      echo "<br><br><a class='small' href='".FUSION_SELF."?action=deletealbumpic&album_id=$album_id'>".$locale['412']."</a></td><td><img src='".PHOTOS."a".$album_id.".jpg' border='1' alt='".$locale['418']."' width='".$settings[album_image_w]."' height='".$settings[album_image_h]."'>";
   }else{
      echo "</td><td class='tbl'><input type='file' name='album_pic_file' class='textbox' style='width:250px;'><br>
<span class='small alt'>".sprintf($locale['419'], $settings['album_image_w'], $settings['album_image_h'])."</span>";
   }
   echo "</td></tr>\n";
   echo "<tr><td colspan='2' align='center' class='tbl'><br>\n<input type='submit' name='btn_save_album' value='".$locale['414']."' class='button'>\n";
   if($action=="editalbum"){
      echo "<input type='submit' name='btn_cancel' value='".$locale['415']."' class='button'>\n";
   }
   echo "</td></tr>\n</table></form>\n";
   closetable();
   tablebreak();
   if($action == ""){
      opentable($locale['400']);
      $rows=dbrows(dbquery("SELECT * FROM ".$db_prefix."photo_albums"));
      if($rows!=0){
         $result=dbquery(
            "SELECT ta.*, COUNT(tp.photo_id) photo_count
            FROM ".$db_prefix."photo_albums ta LEFT JOIN ".$db_prefix."photos tp
            USING (album_id) GROUP BY album_id ORDER BY album_order"
         );
         echo "<table align='center' cellpadding='0' cellspacing='1' width='550' class='tbl-border'>
<tr>
<td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['404']."</b></td>
<td class='tbl2'><b>".$locale['405']."</b></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['406']."</b></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['407']."</b></td>
<td align='center' width='1%' colspan='2' class='tbl2' style='white-space:nowrap'><b>".$locale['408']."</b></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['409']."</b></td>
</tr>\n";
         $r=0;
         while($data=dbarray($result)){
            $album_id=$data['album_id'];
            $album_title=stripslashes($data['album_title']);
            $album_info=stripslashes($data['album_info']);
            $album_order=$data['album_order'];
            $photo_count=$data['photo_count'];
            if($photo_count==0) $photo_count=$locale['432'];
            if($rows!=1){
               if($album_order==1){
                  $up_down=" <a href='".FUSION_SELF."?action=mdown&album_id=$album_id'><img src='".THEME."images/down.gif' border='0' /></a>";
               }elseif($album_order < $rows){
                  $up_down=" <a href='".FUSION_SELF."?action=mup&album_id=$album_id'><img src='".THEME."images/up.gif' border='0' /></a>\n";
                  $up_down.=" <a href='".FUSION_SELF."?action=mdown&album_id=$album_id'><img src='".THEME."images/down.gif' border='0' /></a>";
               }else{
                  $up_down=" <a href='".FUSION_SELF."?action=mup&album_id=$album_id'><img src='".THEME."images/up.gif' border='0' /></a>";
               }
            }else{
               $up_down = "";
            }
            if(($r%2)==0){$class="tbl1";}else{$class="tbl2";}
            echo "<tr><td align='center' width='1%' class='$class' style='white-space:nowrap'>$album_id</td>
<td class='$class'><a title='$album_info' href='".FUSION_SELF."?action=editalbum&album_id=".$data['album_id']."'>$album_title</a></td>
<td align='center' width='1%' class='$class' style='white-space:nowrap'>";
            if(file_exists(PHOTOS."a".$album_id.".jpg")){
               echo "<img src='".IMAGES."tick.gif'>";
            }else{
               echo " ";
            }
            echo "</td>\n
<td align='center' width='1%' class='$class' style='white-space:nowrap'>$photo_count</td>
<td align='center' class='$class' width='1%' style='white-space:nowrap'>$album_order</td>
<td align='center' class='$class' width='1%' style='white-space:nowrap'>$up_down</td>
<td align='center' class='$class' width='1%' style='white-space:nowrap'>";
            echo "<a href='photos.php?album_id=".$data['album_id']."'>".$locale['413']."</a>";
            if ($photo_count==0){
               echo " | <a href='".FUSION_SELF."?action=deletealbum&album_id=".$data['album_id']."'>".$locale['412']."</a>";
            }
            echo "</td></tr>";
            $r++;
         }
         echo "<tr>\n<td align='center' colspan='7' class='tbl1'>[ <a href='".FUSION_SELF."?action=refresh'>".$locale['433']."</a> ]</td>\n</tr>\n</table>\n";
         closetable();
      }else{
         echo "<center>".$locale['431']."</center>\n";
         closetable();
      }
   }
}

echo "</td>\n";
require_once BASEDIR."footer.php";
?>




Nuotrauka
2008 Bir. 7 00:06:37          2 žinutė iš 4
Spausdinti pranešimą
Bandyk gal taip.
createThumbnail(PHOTOS.basename($album_pic['id_name']),PHOTOS."a".$album_id.".jpg",$settings['album_image_w'],$settings['album_image_h']);




2008 Bir. 7 00:06:18          3 žinutė iš 4
Spausdinti pranešimą
Arba jis nesuchmodino :/
2008 Bir. 7 10:06:38          4 žinutė iš 4
Spausdinti pranešimą
Man tokia klaida tik localhoste būna, bet ten su nustatymais hoste kažkas, jeigu chmod nepadės parašyk hosto adminam.
Peršokti į forumą: