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.


Topics - JensF

Pages: [1] 2 3
1
Hi,

i have made no changes on my site but i have this problem

Look here: http://www.terraristik-galerie.de/index.php

What is here the problem????

2
Hi,

ich suche nach einem Mod wie man ihn aus Foren kennt. Ein User schreibt zu einem Bild einen Kommentar und kann dann wählen ob er bei weiteren Kommentaren benachrichtigt werden möchte so das er immer weiß was andere zu dem Bild sagen.

Bild abonnieren sozusagen.

Hier im Forum wurde danach ja schon oft gefragt und ich habe es auch schon auf ein paar Seiten gesehen aber es wurde nie veröffentlicht. Nun würde ich dafür auch bezahlen da ich diesen Mod sehr wichtig finde und ihn gerne hätte.


3
Hallo,

ich frage mich ob es möglich ist mehrere Bilder einer Kategorie gleichzeitig einem Benutzer zuzuordnen??
Leider finde ich den Punkt bei mir nicht. Ich kann zwar bei mehreren Bildern gleichzeitig die Beschreibung ändern und auch die KAtegorie aber ich möchte das alle Bilder in einer KAtegorie vom gleichen User stammen auch wenn der diese nicht hochgeladen hat.

Geht das? Wenn ja, wie???


Danke!!!

4
Discussion & Troubleshooting / Database table problem
« on: November 19, 2006, 05:48:40 PM »
Hi there,

now i have a problem with a table in my database. I have this error

Quote
Fehler

SQL-Befehl: Bearbeiten

SHOW INDEX FROM `bildergalerie_hits` ;

MySQL meldet: Dokumentation
#1016 - Can't open file: 'bildergalerie_hits.MYI' (errno: 144)

I have made no changes....

5
see this -> http://www.terraristik-galerie.de/categories.php?cat_id=62

Can anyone help me??

Here my categories.html

 :!:


6
Discussion & Troubleshooting / Tote Bilder
« on: October 26, 2006, 12:03:57 AM »
Hallo zusammen,

leider muss ich jetzt auf deutsch schreiben weil ich das in englisch sicher nicht hinbekomme. Vielleicht kann aber trotzdem jemand helfen.

Und zwar wurde meine Seite trotz aller Bug Fixes vor einigen Tagen gehackt. Nun habe ich ein Backup meiner Datenbank wieder aufgespielt aber leider ist das Backup vom 21.07.. Das heißt alles was danch kam bis heute ist verloren.

Nun habe ich etliche Bilder auf meinem Server die nicht mehr in der Datenbank sind und die ich auch keinem User zuordnen kann. Es ist ziemlich mühselig über die Bilder checken Funktion jede KAtegorie zu durchwühlen nach Bilder die nicht in der Datenbank sind.

Gibt es eine Möglichkeit automatisch alle Kategorien nach Bilder zu durchsuchen die nicht zugeordnet sind???

Wär echt klasse. Wenn ich dann weiß wieviele Bilder es sind muss ich überlegen ob ich die alle lösche oder trotzdem eintrage :(

Danke für die Hilfe...

7
Discussion & Troubleshooting / Can´t see Videos in the Browser
« on: May 26, 2006, 07:42:49 PM »
Hi there,

i have a little problem. I have uploaded Videos but i can´t see it in the Browser directly. The Video where load but not played.
I have tested it with the IE, Opera and Firefox.

When i Download it it where played from my Media Player...


Test here: http://www.terraristik-galerie.de/details.php?image_id=2153

Can anyone say me what is wrong???

8
Hello,

i will made a new Style for my site. I will change the colors...but where can i find the point to changes the blue color??? See the screen...thanks for the answers!


9
Discussion & Troubleshooting / Database very big
« on: April 21, 2006, 11:42:01 PM »
Hi there,

i have aQuestion!

I have 1725 Images and 477 Registered Users in my Galery.

My Database had a size from 41,1 MB. I found this very big or is this normal???

http://www.terraristik-galerie.de/statistics.php

10
Mods & Plugins (Requests & Discussions) / Jump to the new comment
« on: April 03, 2006, 09:26:38 PM »
Hi there,

when i write a comment and post it the site loads new and then jump to the comment form.

What must i do that after send the comment it jump to the new comment and not to the comment form??

11
Discussion & Troubleshooting / readcomments MOD
« on: January 23, 2006, 01:58:24 AM »
Hi there,

at a few time ago in this board where a mod that user can see new comments from his images. Today i have see that it brings me a blank page when i click on this link

http://www.terraristik-galerie.de/member.php?action=readcomments

I don´t have find this Mod and i have no changes made in the member.php at a long time. Can anyone say me what is wrong with it??
This is the function in the member.php

Code: [Select]
if ($action == "readcomments") {
  if ($user_info['user_level'] >= GUEST) {
    header("Location: ".$site_sess->url($url, "&"));
    exit;
  }
   $txt_clickstream = "Comments";
   if (isset($HTTP_POST_VARS['commentsetperpage']) || isset($HTTP_GET_VARS['commentsetperpage'])) {
     $commentsetperpage = (intval($HTTP_POST_VARS['commentsetperpage']) ) ? intval($HTTP_POST_VARS['commentsetperpage']) : intval($HTTP_GET_VARS['commentsetperpage']);
     if ($commentsetperpage) {
       $site_sess->set_session_var("commentperpage", $commentsetperpage);
       $session_info['commentperpage'] = $commentsetperpage;
     }
   }

   if (isset($session_info['commentperpage'])) {
     $commentperpage = $session_info['commentperpage'];
   }
   else {
     $commentperpage = 5;
   }
   $commentsperpage_dropdown = "\n<select name=\"commentsetperpage\" onchange=\"if (this.options[this.selectedIndex].value != 0){ forms['commentsperpage'].submit() }\" class=\"select\">\n";
   for($i = 1; $i <= 15; $i++) {
     $setvalue = 1 * $i;
     $commentsperpage_dropdown .= "<option value=\"".$setvalue."\"";
       if ($setvalue == $commentperpage) {
       $commentsperpage_dropdown .= " selected=\"selected\"";
     }
     $commentsperpage_dropdown .= ">";
     $commentsperpage_dropdown .= $setvalue;
     $commentsperpage_dropdown .= "</option>\n";
   }
   $commentsperpage_dropdown .= "</select>\n";

   $site_template->register_vars("commentsperpage_dropdown", $commentsperpage_dropdown);
   $commentsperpage_dropdown_form = $site_template->parse_template("member_commentsdropdown_form");
   $site_template->register_vars("commentsperpage_dropdown_form", $commentsperpage_dropdown_form);

  $sql = "SELECT COUNT(c.comment_id) AS comments
        FROM ".COMMENTS_TABLE." c
        LEFT JOIN ".IMAGES_TABLE." i ON i.image_id = c.image_id
        WHERE i.user_id = ".$user_info['user_id']." AND c.is_read = 0";
   $result = $site_db->query_firstrow($sql);
   $site_db->free_result();
   $num_comments = $result['comments'];
   if ($action == "postcomment") {
      $page = ceil($num_comments / $commentperpage);
   }
   $num_rows_all = (isset($num_comments)) ? $num_comments : 0;
   $link_arg = $site_sess->url(ROOT_PATH."member.php?action=readcomments");
   include(ROOT_PATH.'includes/paging.php');
   $getpaging = new Paging($page, $commentperpage, $num_rows_all, $link_arg, $lang['comment_stats'], "comments");
   $offset = $getpaging->get_offset();
   $get_comment_stats = ($num_comments) ? $getpaging->get_paging_stats() : "";
   $comment_stats = preg_replace("/image/", "comment", $get_comment_stats);
   $site_template->register_vars(array(
     "paging" => $getpaging->get_paging(),
     "paging_stats" => $comment_stats
   ));
  $additional_sql = "";
  if (!empty($additional_user_fields)) {
    $table_fields = $site_db->get_table_fields(USERS_TABLE);
    foreach ($additional_user_fields as $key => $val) {
      if (isset($HTTP_POST_VARS[$key]) && isset($table_fields[$key])) {
        $additional_sql .= ", $key = '".un_htmlspecialchars(trim($HTTP_POST_VARS[$key]))."'";
      }
    }
  }
  $sql = "SELECT c.comment_id, c.image_id, c.user_id, c.user_name AS comment_user_name, c.comment_headline, c.comment_text, c.comment_ip, c.comment_date, i.image_id, i.cat_id, i.image_name, i.image_media_file, i.image_thumb_file".$additional_sql.get_user_table_field(", u.", "user_level").get_user_table_field(", u.", "user_name").get_user_table_field(", u.", "user_email").get_user_table_field(", u.", "user_showemail").get_user_table_field(", u.", "user_invisible").get_user_table_field(", u.", "user_joindate").get_user_table_field(", u.", "user_lastaction").get_user_table_field(", u.", "user_comments").get_user_table_field(", u.", "user_homepage").get_user_table_field(", u.", "user_icq")."
        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")." = c.user_id)
        WHERE i.user_id = ".$user_info['user_id']." AND c.is_read = 0
        ORDER BY c.comment_date ASC
          LIMIT $offset, $commentperpage";
  $result = $site_db->query($sql);
  $comment_row = array();
  while ($row = $site_db->fetch_array($result)) {
    $comment_row[] = $row;
  }
  $site_db->free_result($result);
  $num_comments = sizeof($comment_row);

  if (!$num_comments) {
    $comments = "<tr><td class=\"commentrow1\" colspan=\"2\"> Es sind keine ungelesenen Kommentare vorhanden. </td></tr>";
  }
  else {
    $comments = "";
    $bgcounter = 0;
    for ($i = 0; $i < $num_comments; $i++) {
      $row_bg_number = ($bgcounter++ % 2 == 0) ? 1 : 2;

      $comment_user_email = "";
      $comment_user_email_save = "";
      $comment_user_mailform_link = "";
      $comment_user_email_button = "";
      $comment_user_homepage_button = "";
      $comment_user_icq_button = "";
      $comment_user_profile_button = "";
      $comment_user_status_img = REPLACE_EMPTY;
      $comment_user_name = htmlspecialchars($comment_row[$i]['comment_user_name']);
      $comment_user_info = $lang['userlevel_guest'];

      $comment_user_id = $comment_row[$i]['user_id'];

      if (isset($comment_row[$i][$user_table_fields['user_name']]) && $comment_user_id != GUEST) {
        $comment_user_name = htmlspecialchars($comment_row[$i][$user_table_fields['user_name']]);
       
        $comment_user_profile_link = !empty($url_show_profile) ? $site_sess->url(preg_replace("/{user_id}/", $comment_user_id, $url_show_profile)) : $site_sess->url(ROOT_PATH."member.php?action=showprofile&amp;".URL_USER_ID."=".$comment_user_id);
        $comment_user_profile_button = "<a href=\"".$comment_user_profile_link."\"><img src=\"".get_gallery_image("profile.gif")."\" border=\"0\" alt=\"".$comment_user_name."\" /></a>";
       
        $comment_user_status_img = ($comment_row[$i][$user_table_fields['user_lastaction']] >= (time() - 300) && ((isset($comment_row[$i][$user_table_fields['user_invisible']]) && $comment_row[$i][$user_table_fields['user_invisible']] == 0) || $user_info['user_level'] == ADMIN)) ? "<img src=\"".get_gallery_image("user_online.gif")."\" border=\"0\" alt=\"Online\" />" : "<img src=\"".get_gallery_image("user_offline.gif")."\" border=\"0\" alt=\"Offline\" />";
       
        $comment_user_homepage = (isset($comment_row[$i][$user_table_fields['user_homepage']])) ? format_url($comment_row[$i][$user_table_fields['user_homepage']]) : "";
        if (!empty($comment_user_homepage)) {
          $comment_user_homepage_button = "<a href=\"".$comment_user_homepage."\" target=\"_blank\"><img src=\"".get_gallery_image("homepage.gif")."\" border=\"0\" alt=\"".$comment_user_homepage."\" /></a>";
        }
       
        $comment_user_icq = (isset($comment_row[$i][$user_table_fields['user_icq']])) ? $comment_row[$i][$user_table_fields['user_icq']] : "";
        if (!empty($comment_user_icq)) {
          $comment_user_icq_button = "<a href=\"http://wwp.icq.com/scripts/search.dll?to=".$comment_user_icq."\" target=\"_blank\"><img src=\"http://web.icq.com/whitepages/online?icq=".$comment_user_icq."&img=5\" width=\"18\" height=\"18\" border=\"0\" alt=\"".$comment_user_icq."\" /></a>";
        }
       
        if (!empty($comment_row[$i][$user_table_fields['user_email']]) && (!isset($comment_row[$i][$user_table_fields['user_showemail']]) || (isset($comment_row[$i][$user_table_fields['user_showemail']]) && $comment_row[$i][$user_table_fields['user_showemail']] == 1))) {
          $comment_user_email = $comment_row[$i][$user_table_fields['user_email']];
          $comment_user_email_save = str_replace("@", " at ", $comment_row[$i][$user_table_fields['user_email']]);
          if (!empty($url_mailform)) {
            $comment_user_mailform_link = $site_sess->url(preg_replace("/{user_id}/", $comment_user_id, $url_mailform));
          }
          else {
            $comment_user_mailform_link = $site_sess->url(ROOT_PATH."member.php?action=mailform&amp;".URL_USER_ID."=".$comment_user_id);
          }
          $comment_user_email_button = "<a href=\"".$comment_user_mailform_link."\"><img src=\"".get_gallery_image("email.gif")."\" border=\"0\" alt=\"".$comment_user_email_save."\" /></a>";
        }

        if (!isset($comment_row[$i][$user_table_fields['user_level']]) || (isset($comment_row[$i][$user_table_fields['user_level']]) && $comment_row[$i][$user_table_fields['user_level']] == USER)) {
          $comment_user_info = $lang['userlevel_user'];
        }
        elseif ($comment_row[$i][$user_table_fields['user_level']] == ADMIN) {
          $comment_user_info = $lang['userlevel_admin'];
        }
       
        $comment_user_info .= "<br />";
        $comment_user_info .= (isset($comment_row[$i][$user_table_fields['user_joindate']])) ? "<br />".$lang['join_date']." ".format_date($config['date_format'], $comment_row[$i][$user_table_fields['user_joindate']]) : "";
        $comment_user_info .= (isset($comment_row[$i][$user_table_fields['user_comments']])) ? "<br />".$lang['comments']." ".$comment_row[$i][$user_table_fields['user_comments']] : "";
      }

      $comment_user_ip = ($user_info['user_level'] == ADMIN) ? $comment_row[$i]['comment_ip'] : "";
     
      $admin_links = "";
      if ($user_info['user_level'] == ADMIN) {
        $admin_links .= "<a href=\"".$site_sess->url(ROOT_PATH."admin/index.php?goto=".urlencode("comments.php?action=editcomment&amp;comment_id=".$comment_row[$i]['comment_id']))."\" target=\"_blank\">".$lang['edit']."</a>&nbsp;";
        $admin_links .= "<a href=\"".$site_sess->url(ROOT_PATH."admin/index.php?goto=".urlencode("comments.php?action=removecomment&amp;comment_id=".$comment_row[$i]['comment_id']))."\" target=\"_blank\">".$lang['delete']."</a>";
      }
      elseif ($is_image_owner) {
        $admin_links .= ($config['user_edit_comments'] != 1) ? "" : "<a href=\"".$site_sess->url(ROOT_PATH."member.php?action=editcomment&amp;".URL_COMMENT_ID."=".$comment_row[$i]['comment_id'])."\">".$lang['edit']."</a>&nbsp;";
        $admin_links .= ($config['user_delete_comments'] != 1) ? "" : "<a href=\"".$site_sess->url(ROOT_PATH."member.php?action=removecomment&amp;".URL_COMMENT_ID."=".$comment_row[$i]['comment_id'])."\">".$lang['delete']."</a>";
      }
      $image_url = $site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$comment_row[$i]['image_id']);
     $image_link = "<b><a href=\"".$image_url."\">".$comment_row[$i]['image_name']."</a></b>";
      $site_template->register_vars(array(
        "thumb" => "<a href=\"".$image_url."\">".get_thumbnail_code($comment_row[$i]['image_media_file'], $comment_row[$i]['image_thumb_file'], $comment_row[$i]['image_id'], $comment_row[$i]['cat_id'])."</a>",
        "count" => $i,
        "image_name" => $image_link,
        "comment_id" => $comment_row[$i]['comment_id'],
        "comment_user_id" => $comment_user_id,
        "comment_user_status_img" => $comment_user_status_img,
        "comment_user_name" => $comment_user_name,
        "comment_user_info" => $comment_user_info,
        "comment_user_profile_button" => $comment_user_profile_button,
        "comment_user_email" => $comment_user_email,
        "comment_user_email_save" => $comment_user_email_save,
        "comment_user_mailform_link" => $comment_user_mailform_link,
        "comment_user_email_button" => $comment_user_email_button,
        "comment_user_homepage_button" => $comment_user_homepage_button,
        "comment_user_icq_button" => $comment_user_icq_button,
        "comment_user_ip" => $comment_user_ip,
        "comment_headline" => format_text($comment_row[$i]['comment_headline'], 0, $config['wordwrap_comments'], 0, 0),
        "comment_text" => format_text($comment_row[$i]['comment_text'], $config['html_comments'], $config['wordwrap_comments'], $config['bb_comments'], $config['bb_img_comments']),
        "comment_date" => format_date($config['date_format']." ".$config['time_format'], $comment_row[$i]['comment_date']),
        "row_bg_number" => $row_bg_number,
        "admin_links" => $admin_links
      ));
      $comments .= $site_template->parse_template("new_comment_bit");
    } // end while
  } //end else
  $site_template->register_vars("comments", $comments);
  unset($comments); 
 
  $content = $site_template->parse_template("member_comments");
 
}

12
Hi there,

is there a way to have automaticly the Name of the Picture in the Headline from the Comments???

13
Feedback & Suggestions / Was ist überhaupt die session id
« on: January 06, 2006, 11:43:01 AM »
Hallo zusammen,

einige haben vielleicht hier im Forum gelesen das ich Probleme mit der session id habe. So wie sich das bisher herausgestellt hat liegt das an wohl entweder am Cache Mod oder aber daran das meine Seite den  ISO-8859-1 (Western European) Standard benutzt, mein Server aber Unicode hat (Wenn ich das alles richtig verstanden habe).

Nun ist aber die Sache so das das Problem immer nur auftaucht wenn in der URL eine session ID vergeben wurde.

Kann man im Admin Panel die sessions auch auf 0 Minuten stellen??? Was hat das für Auswirkungen??? Vielleicht kann ich ja so meinem Problem auch aus dem Weg gehen.

Wenn ich meine Dateien nähmlich in Unicode speichere dann habe ich das komplette Chaos auf meiner Seite...


*Can write this now in english, translate is to hard for me*

14
Discussion & Troubleshooting / Problem with session
« on: December 27, 2005, 04:38:21 PM »
Hi there,

i have a little Problem on my site. At few times i will login my site and i become this one.

I must delete the session from the Browser line and now it works. I have the problem now when i click some images. I have search the board but can´t find anyone.





15
Chit Chat / Search for glitzer´s Homepage
« on: December 23, 2005, 03:08:01 PM »
Hi there,

can anyone say me where can i find the Homepage from the Member glitzer ???

I can find the Page :( It is a very good eCard Site...

Pages: [1] 2 3