Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - koikonut

Pages: [1] 2 3 4 5
1
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: November 29, 2006, 08:32:39 PM »
Vielen Dank! Es funktioniert tatsächlich :-) Freue mich, wie gut die Hilfe hier funktioniert :-)

Gruß

2
Mods & Plugins (Releases & Support) / Re: [MOD] Last comments v1
« on: November 28, 2006, 11:04:23 PM »
Ahh thank you! Do you know why I cannot see a random image on my page? I worked some time ago but suddenly no image appears anymore... The code above is the one I use. Thank you ! :-)

3
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: November 28, 2006, 10:59:00 PM »
Ich weiß allerdings nicht, woher du diesen Satz mit dem "Registriere dich, um ..." her hast - der kommt an diese Stelle der Galerie gar nicht vor - zumindest nicht bei mir?! Der sollte nur kommen, wenn ein Bild angezeigt wird, zu dem keine Berechtigung in der großen Version besteht - ich kann ihn auch nicht im Quellcode sehen..

Was müsste ich also tun, wenn du recht hast?

Vielen Dank nochmal!
Gruß

4
Ich habe einene neuen Aspekt entdeckt! Und zwar sieht man die letzten Kommentare, wenn man eingeloggt ist - es liegt also daran, dass die rechte nicht vorhanden sind die Comments zu sehen nehme ich an... Allerdings ist bei allen Kategorien gesetzt "Kommentare lesen: alle". Ist mein Last Comments Code falsch?

Code: [Select]
/*
  MOD LAST COMMENTS
  START INSERT
*/
//Settings
$num = 15; //how many comments to show
$thumb_size = 48; //max dim of thumbnails in pixels
$text_len = 250; //max lenght of the text to show (bbcode and html are counted too)
//End settings

$last_comments = "<table>";
$sql = "SELECT c.image_id, c.comment_id, c.user_id as comment_user_id, c.user_name as guest_user_name, c.comment_headline, c.comment_text, c.comment_date, i.cat_id, i.user_id, i.image_name, i.image_media_file, i.image_thumb_file".get_user_table_field(", u.", "user_name")." as user_name".get_user_table_field(", s.", "user_name")." as comment_user_name
        FROM ".COMMENTS_TABLE." c
        LEFT JOIN ".IMAGES_TABLE." i ON i.image_id = c.image_id
        LEFT JOIN ".USERS_TABLE." u ON ".get_user_table_field("u.", "user_id")." = i.user_id
        LEFT JOIN ".USERS_TABLE." s ON ".get_user_table_field("s.", "user_id")." = c.user_id
        WHERE i.image_active = 1 AND i.image_allow_comments = 1 AND i.cat_id NOT IN (".get_auth_cat_sql('auth_readcomment', 'NOTIN').") AND i.cat_id NOT IN (".get_auth_cat_sql('auth_viewcat', 'NOTIN').") AND i.cat_id NOT IN (".get_auth_cat_sql('auth_viewimage', 'NOTIN').")
        ORDER BY c.comment_date DESC
        LIMIT ".$num;
$result = $site_db->query($sql);
$bgcounter = 0;

while ($row = $site_db->fetch_array($result))
{
  $row_bg_number = ($bgcounter++ % 2 == 0) ? 1 : 2;
  if (empty($row['image_thumb_file']))
  {
    $thumb_file = ICON_PATH."/".get_file_extension($row['image_media_file']).".gif";
  }
  else
  {
    $thumb_file = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : ROOT_PATH.THUMB_DIR."/".$row['cat_id']."/".$row['image_thumb_file'];
  }
  $thumb_info = @getimagesize($thumb_file);
  $width = ($thumb_info[0]) ? $thumb_info[0] : $thumb_size;
  $height = ($thumb_info[1]) ? $thumb_info[1] : $thumb_size;
  if ($width > $thumb_size && $height > $thumb_size)
  {
    $ratio = $width / $height;
    if ($ratio > 1) {
      $new_width = $thumb_size;
      $new_height = round(($thumb_size/$width) * $height);
    }else {
      $new_width = round(($thumb_size/$height) * $width);
      $new_height = $thumb_size;
    }
  }
  else
  {
    $new_width = $width;
    $new_height = $height;
  }
  $view_image = true;
  $thumb = "<img src=\"".$thumb_file."\" class=\"small_image\" onmouseover=\"showTooltip('lctt_".$row['image_id']."')\" onmouseout=\"hideTooltip()\" border=\"".$config['image_border']."\" width=\"".$new_width."\" height=\"".$new_height."\" alt=\"".$row['image_name']."\" />";
/*
  $view_image = check_permission('auth_viewcat', $row['cat_id']);
  $thumb = "<img src=\"".$thumb_file."\"".(($view_image) ? "" : " onClick=\"alert('".(($lang['auth_alert'][$cat_id]) ? $lang['auth_alert'][$cat_id] : $lang['auth_alert']['default'])."');\"")." border=\"".$config['image_border']."\" width=\"".$new_width."\" height=\"".$new_height."\" alt=\"".$row['image_name']."\" />";
*/
  $image_user_name = ($row['user_id'] != GUEST) ? $row['user_name'] : $lang['userlevel_guest'];
  $image_user_link = ($row['user_id'] != GUEST) ? $site_sess->url(ROOT_PATH."member.php?action=showprofile&amp;user_id=".$row['user_id']) : "";
  $comment_user_name = ($row['comment_user_id'] == GUEST) ? ((empty($row['guest_user_name'])) ? $lang['userlevel_guest'] : $row['guest_user_name']) : $row['comment_user_name'];
  $comment_user_link = ($row['comment_user_id'] != GUEST) ? $site_sess->url(ROOT_PATH."member.php?action=showprofile&amp;user_id=".$row['comment_user_id']) : "";
  $text = $row['comment_text'];
  if (strlen($text) > $text_len) {
    $text = substr($text, 0, $text_len)." ...";
  }
  $site_template->register_vars(array(
    "last_comments_more" => "<a href=\"".$site_sess->url(ROOT_PATH."member.php?action=showcomments", "&")."\">".$lang['last_comments_more']."</a>",
    "comment_image" => ($view_image) ? "<a href=\"".$site_sess->url(ROOT_PATH."details.php?image_id=".$row['image_id'])."\">".$thumb."</a>" : $thumb,
    "comment_guest" => ($row['comment_user_id'] == GUEST && !empty($row['guest_user_name'])) ? $lang['userlevel_guest'] : "",
    "comment_image_name" => ($view_image) ? "<a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$row['image_id'])."\">".stripslashes($row['image_name'])."</a>" : stripslashes($row['image_name']),
    "image_cat_name" => (check_permission('auth_viewcat', $row['cat_id'])) ? "<a href=\"".$site_sess->url(ROOT_PATH."categories.php?".URL_CAT_ID."=".$row['cat_id'])."\">".$cat_cache[$row['cat_id']]['cat_name']."</a>" : $cat_cache[$row['cat_id']]['cat_name'],
    "image_user_name" =>   ($image_user_link) ? "<a href=\"".$image_user_link."\">".$image_user_name."</a>" : $image_user_name,
    "comment_user_name" => ($comment_user_link) ? "<a href=\"".$comment_user_link."\">".$comment_user_name."</a>" : $comment_user_name,
    "comment_user_id" => $row['comment_user_id'],
    "comment_headline" => format_text($row['comment_headline'], 0, $config['wordwrap_comments'], $config['bb_comments'], 0, 1),
    "comment_text" => format_text($text, $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments'], 1, 0),
    "comment_date" => format_date($config['date_format']." ".$config['time_format'], $row['comment_date']),
    "row_bg_number" => $row_bg_number,
"comment_image_id" => $row['image_id']
  ));
  $last_comments .= $site_template->parse_template("last_comment_bit");
}
$last_comments .= "</table>";

/*
if (empty($last_comments))
{
  $last_comments = $lang['no_comments'];
}
*/
$site_template->register_vars(array(
  "lang_last_comments" => $lang['last_comments'],
  "last_comments" => $last_comments
));
/*
  MOD LAST COMMENTS
  END INSERT
*/

Vielen dank für die Hilfe!

5
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: November 28, 2006, 10:38:22 PM »
Du meinst, dass die Bilder gesperrt sind? Ich sehe das Zufallsbild auch nicht im eingeloggten Zustand und außerdem sind nur die Großansichten, nicht aber die Thumbs gesperrt. Hmm - was könnte noch die Möglichkeit sein? Kann auch noch andere Codes posten wenns hilft :-)

Bitte helfen! Danke!  :-)

Gruß K

6
Hallo Ivan!

Auch ich habe Firefox 2.0 und es wird angezeigt...  :?: komisch komisch - hat jemand noch einen Ansatz?

Vielen Dank, Grußß K

7
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: November 27, 2006, 11:54:54 PM »
Hallo!

Bei mir hat das Script immer einwandfrei funktioniert. Aber plötzlich wird einfach kein Bild mehr angezeigt bzw. nichts mehr von der Datenbank geholt scheint mir:
www.konradin.net holt sich die /galerie/random.php die wie folt aussieht (exkl. Copyright):

Code: [Select]
<?php

// PATH to your 4images Gallery / PFAD zu Ihrer 4images Gallerie
define('ROOT_PATH''galerie/');

include(
ROOT_PATH.'config.php');
include(
ROOT_PATH.'includes/db_mysql.php');
include(
ROOT_PATH.'includes/constants.php');

$site_db = new Db($db_host$db_user$db_password$db_name);
function 
is_remote($file_name) {
  return (
preg_match('#^https?\\:\\/\\/[a-z0-9\-]+\.([a-z0-9\-]+\.)?[a-z]+#i'$file_name)) ? 0;
}

$sql "SELECT COUNT(*) as total_images
        FROM "
.IMAGES_TABLE." a, ".CATEGORIES_TABLE." b 
        WHERE a.image_active=1 
        AND a.cat_id = b.cat_id 
        AND b.auth_viewcat="
.AUTH_ALL.
        AND b.auth_viewimage="
.AUTH_ALL."
        "
;
$row $site_db->query_firstrow($sql);
$total_images $row['total_images'];

mt_srand((double)microtime() * 1000000);
$number = ($total_images 1) ? mt_rand(0$total_images 1) : 0;

$sql "SELECT a.image_id, a.cat_id, a.image_name, a.image_active, a.image_thumb_file, a.image_comments 
        FROM "
.IMAGES_TABLE." a, ".CATEGORIES_TABLE." b 
        WHERE a.image_active=1 
        AND a.cat_id = b.cat_id 
        AND b.auth_viewcat="
.AUTH_ALL.
        AND b.auth_viewimage="
.AUTH_ALL.
        LIMIT 
$number, 1";
$row $site_db->query_firstrow($sql);
$image_id $row['image_id'];
$cat_id $row['cat_id'];
$image_name $row['image_name'];
$image_comments $row['image_comments'];
$thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : ROOT_PATH.THUMB_DIR."/".$cat_id."/".$row['image_thumb_file'];

echo 
"<div style=\"float: left; background-color:#d3ca91;padding:1px\"><a href=\"".ROOT_PATH."img".$image_id.".htm\"><img src=\"".$thumb_src."\" border=\"0\" style=\"border: 6px solid white;\" alt=\"".$image_name."\" /></a></div><br style=\"clear:both;\"/>\n<br />\n";
echo 
"<b>".$image_name."</b><br />\n";
echo 
"Kommentare: ".$image_comments."<br />\n";
?>

Bitte helft mir - weiß keinen Lösungsansatz - vor allem weil ich nichts verändert habe und es einfach nicht mehr funktioniert. Als einzige Veränderung fällt mir der Einbau von Google Analytics ein aber weiß nicht ob der Fehler schon vorher war und kann ja eigentlich nichts zu bedeuten haben.

Vielen vielen Dank!

Gruß K,

8
Hello!

if you take a look on my site www.konradin.net/galerie you can see "Letzte Kommentare" or "Last Comments" on the bottom. You should see the last 15 commented immages with small thumbnails and the comment text - so you do with the firefox. But if you look at the site with the internet explorer, you don't see anything neither something is written in the code. What could be the reason for that??

Thank you for helping me! :-)

Greetings


Hallo!

wenn ihr meine Seiten www.konradin.net/galerie anschaut, sehr ihr unten auf der Startseite "Letzte Kommentare" wo eigentlich die letzten 15 Kommentare erscheinen müssten. Das geschieht bei der Betrachtung durch Firefox auch einwandfrei. Mit Internet Explorer erscheint unter der Überschrift allerdings gar nichts! Was ist denn da los? Es ist auch nichts im Quelltext von den letzten Kommentaren, was beim Firefox aber schon so ist... Das ist mir wirklich ein Rätsel.

Vielen Dank für Eure Hilfe!!

Grüße und gute Nacht

Konradin

9
Hallo!

Ich würde gerne in der Übersichtsseite der Bilder für die Admins bereits die links "Bearbeiten" und "Löschen" anzeigen lassen - in dem Fall als kleine Bildchen. Gibt es eine Möglichkeiten, die schon an dieser Stelle einzubinden? Ein nächster Schritt wäre dann, das löschen über Ajax mit nur einem Klick möglich zu machen... :-)

Als andere Frage hätte ich noch, ob es möglich wäre, dem Admin NICHT aktivierte Bilder schon in den Kategorien anzuzeigen - vielleicht transparent oder so. Dadurch könnte man ein Bild bevor man es löscht erst mal deaktivieren und würde es weiterhin als existent sehen - wär toll wenns dafür eine lösung gäbe!

Freu mich auf Eure Antworten,

Gruß konradin

www.konradin.net/galerie

10
:flag-de: Hallo!

Ich suche einen Mod, der es mir möglich macht dem User Anwendungshinweise oder aktuelle News zu vermitteln. So wie die typischen "Wussten Sie schon?" Zeilen, die man in vielen Programmen und Webseiten findet. Dabei wäre es nicht wichtig, ob die Hinweise von mir manuell in einer Textdatei gespeichert werden müssten.

Dadurch könnte der Benutzer der Galerie die Möglichkeiten dieser auch richtig ausschöpfen - wofür machen wir denn sonst die ganzen Mods?! Z.B.: "Wussten Sie schon? In Ihrem Leuchtkasten können Sie eine persönliche Auswahl an Bildern speichern, um auf diese einen schnelleren Zugriff zu haben" oder "Sie können Ihre eigenen Bilder in der Galerie Userbilder hochladen".

Per Zufallsprinzip sollte ab und zu was irgeneine Meldung angezeigt werden, aber eben nicht immer.

Wäre toll, wenn es sowas gäbe.

Vielen Dank,
chao Ko

-----------------------------

 :flag-en: Hello!

I'm looking for a mod that makes it possible to publish short messages that give the user some advice how to use the gallery properly. In many programs and webpages you can find this tips in the style of "Did you know?". I wouldn't care if the differerent information lines ara saved in a DB-table or in a simple txt-document.

So, the user could really use all the 4images functions we've added by mods and that are not normal for a internet user without experience. I could imagine messages like "Did you know that you can save a personal selection of images in your Lightbox and watch them faster?" or "You can upload your own pics to the userpics gallery - did you know that?"

The messages should be displayes in random but not everytime but only sometimes for example on category pages.

That would be great!

Thank you,

bye ko

11
Mods & Plugins (Releases & Support) / Re: Flash Slideshow
« on: June 13, 2006, 04:28:20 AM »
i`m trying to display the category and not only the image name

i was able to add the info needed in the xml file but the problem is that it`s in non latin characters and they are not displayed correclty in the flash movie...

any tips ??

Do you want to solve this problem? (1 page before) http://www.4homepages.de/forum/index.php?topic=7196.msg67854#msg67854

Ko

12
Mods & Plugins (Requests & Discussions) / Re: WaterMark in Pic´s
« on: May 30, 2006, 02:43:30 AM »
Hello,

does this script affect the image file-size?

13
Mods & Plugins (Releases & Support) / Re: Flash Slideshow
« on: May 29, 2006, 01:18:15 AM »
Hi Konrad,

are you able to give me you superb Flashshow Version in German?

Kannst ruhig mit mir deutsch reden.. ;-) Also wenn du Flash hast ist das ganz einfach zu realisieren. Sag mir nur schnell ob die Farben genau so haben möchtest wie in meiner Galerie oder andere? Und welche Größe sollen die Bilder haben maximal?

Ko

14
I installed the statistics mod and modified the template. I put everything in two columns everything above each other. Now when I see  the statistics.php there is a big space in the right column and I really don't know why. Perhaps you could take a look and help me :-)

The page: http://www.konradin.net/galerie/statistics.php

The template Code:

Code: [Select]
{header}
<h2>Kategorien</h2>
{categories_list}
</div><!-- divID left -->
<div id="content">
<h2>{site_name}</h2>
<br />
<div class="kasten">
<div>

      {if stats_overview}
      <h3>{lang_langstats_overview}</h3>
      <table width="100%" border="0" cellspacing="3" cellpadding="3" class="row2">
         {stats_overview}
      </table>
       <br />
      {endif stats_overview}

   <table width="100%">
    <tr>
<td width="50%">
{if stats_user_stats}
{lang_langstats_userstats}
{stats_user_stats}
{endif stats_user_stats}



{if stats_commentstats}
{stats_commentstats}
{endif stats_commentstats}


{if stats_topuploaders}
{stats_topuploaders}
{endif stats_topuploaders}



{if stats_topusersnewusers}
{stats_topusersnewusers}
{endif stats_topusersnewusers}



{if stats_toppostcardssenduser}
{stats_toppostcardssenduser}
{endif stats_toppostcardssenduser}



{if stats_topimagehitsfromuser}
{stats_topimagehitsfromuser}
{endif stats_topimagehitsfromuser}



{if stats_topimagevoter}
{stats_topimagevoter}
{endif stats_topimagevoter}



{if stats_topusersshouted}
{stats_topusersshouted}
{endif stats_topusersshouted}



{if stats_topuserslastaction}
{stats_topuserslastaction}
{endif stats_topuserslastaction}
<br />
<br />
  </td>



<td width="50%">
{if stats_votestats}
{stats_votestats}
{endif stats_votestats}

{if stats_topagegroups}
{lang_langstats_topagegroups}
{stats_topagegroups}
{endif stats_topagegroups}



{if stats_imagestats}
{stats_imagestats}
{endif stats_imagestats}



{if stats_topdownloaders}
{stats_topdownloaders}
{endif stats_topdownloaders}



{if stats_topcommenter}
{stats_topcommenter}
{endif stats_topcommenter}



{if stats_toppostcardsfromuser}
{stats_toppostcardsfromuser}
{endif stats_toppostcardsfromuser}



{if stats_topimageratingsfromuser}
{stats_topimageratingsfromuser}
{endif stats_topimageratingsfromuser}



{if stats_topimagevotedfromuser}
                 {stats_topimagevotedfromuser}
          {endif stats_topimagevotedfromuser}
 
 
 
   {if stats_topusersprofilehits}
                 {stats_topusersprofilehits}
          {endif stats_topusersprofilehits}
 

 
   {if stats_topcommented}
                          {stats_topcommented}
          {endif stats_topcommented}
</td>
</tr>
   
   </table>
   <br />
   <br />
<div align="center">Statistics {stats_version} by IcEcReaM</div>
<!--  Please don't remove the copyright    -->
<!--  Statistics v1.0 (c)2006 by IcEcReaM  -->
     
</div>
</div>

{copyright}
<br />
</div> <!-- DivID content -->
<div id="right">
{footer}

Bye, thank you very much

15
Hello!

I installed the statistics mod from IceCreAm and modified the template. I put everything in two columns everything above each other. Now when I see  the statistics.php there is a big space in the right column and I really don't know why. Perhaps you could take a look and help me :-)

The page: http://www.konradin.net/galerie/statistics.php

The template Code:

Code: [Select]
{header}
<h2>Kategorien</h2>
{categories_list}
</div><!-- divID left -->
<div id="content">
<h2>{site_name}</h2>
<br />
<div class="kasten">
<div>

      {if stats_overview}
      <h3>{lang_langstats_overview}</h3>
      <table width="100%" border="0" cellspacing="3" cellpadding="3" class="row2">
         {stats_overview}
      </table>
       <br />
      {endif stats_overview}

   <table width="100%">
    <tr>
<td width="50%">
{if stats_user_stats}
{lang_langstats_userstats}
{stats_user_stats}
{endif stats_user_stats}



{if stats_commentstats}
{stats_commentstats}
{endif stats_commentstats}


{if stats_topuploaders}
{stats_topuploaders}
{endif stats_topuploaders}



{if stats_topusersnewusers}
{stats_topusersnewusers}
{endif stats_topusersnewusers}



{if stats_toppostcardssenduser}
{stats_toppostcardssenduser}
{endif stats_toppostcardssenduser}



{if stats_topimagehitsfromuser}
{stats_topimagehitsfromuser}
{endif stats_topimagehitsfromuser}



{if stats_topimagevoter}
{stats_topimagevoter}
{endif stats_topimagevoter}



{if stats_topusersshouted}
{stats_topusersshouted}
{endif stats_topusersshouted}



{if stats_topuserslastaction}
{stats_topuserslastaction}
{endif stats_topuserslastaction}
<br />
<br />
  </td>



<td width="50%">
{if stats_votestats}
{stats_votestats}
{endif stats_votestats}

{if stats_topagegroups}
{lang_langstats_topagegroups}
{stats_topagegroups}
{endif stats_topagegroups}



{if stats_imagestats}
{stats_imagestats}
{endif stats_imagestats}



{if stats_topdownloaders}
{stats_topdownloaders}
{endif stats_topdownloaders}



{if stats_topcommenter}
{stats_topcommenter}
{endif stats_topcommenter}



{if stats_toppostcardsfromuser}
{stats_toppostcardsfromuser}
{endif stats_toppostcardsfromuser}



{if stats_topimageratingsfromuser}
{stats_topimageratingsfromuser}
{endif stats_topimageratingsfromuser}



{if stats_topimagevotedfromuser}
                 {stats_topimagevotedfromuser}
          {endif stats_topimagevotedfromuser}
 
 
 
   {if stats_topusersprofilehits}
                 {stats_topusersprofilehits}
          {endif stats_topusersprofilehits}
 

 
   {if stats_topcommented}
                          {stats_topcommented}
          {endif stats_topcommented}
</td>
</tr>
   
   </table>
   <br />
   <br />
<div align="center">Statistics {stats_version} by IcEcReaM</div>
<!--  Please don't remove the copyright    -->
<!--  Statistics v1.0 (c)2006 by IcEcReaM  -->
     
</div>
</div>

{copyright}
<br />
</div> <!-- DivID content -->
<div id="right">
{footer}

Bye, thank you
K

Pages: [1] 2 3 4 5