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 - www.katzen.ag

Pages: 1 2 3 4 [5] 6
61
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: November 26, 2007, 09:14:32 PM »
Jau!!!
Danke, mal wieder was dazu gelernt!

Vergelts Gott  :wink:

KatzenAG

62
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: November 26, 2007, 08:53:28 PM »
Hi mawenzi,

hmmm...ich habe heut wohl ein Brett vor dem Kopf.
Wo soll ich auf Eigenschaften klicken?

Die Anleitung beschreibt folgendes:

-------------------------------------------
Upload all html file and images_board folder, smiles_board folder to your templates directori of curent templates you use at the moment.
Upload board_mailtopics.html to email folder in lang directori of curent langguage you use now.
Upload board_admin.php, board_config.php,board_edit.php to admin folder of your 4images.
Upload all php file to root directori where you install 4images.
----------------------------------------------

Die Icons befinden sich nach dem entpacken in dem Ordner images_board/images_english.
Ich habe es also gemäß der anleitung alles ausgeführt?

Gruß

63
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: November 26, 2007, 08:19:58 PM »
Hello gentlemens!

I have installed the Bod and it works ok for me.
But the images (the buttons) are not shown:



Could anybody say why?!? 8O

Thanks
KatzenAG

64
Mods & Plugins (Releases & Support) / Re: Small Credit "System" "MOD"
« on: November 25, 2007, 01:25:06 PM »
Funktioniert tadellos!!!
Seit dem haben viele meiner User plötzlich """"Lust"""" auf Kommentare abgeben und ins Forum zu schreiben  :mrgreen:

Super Mod, vielen Dank!

www.katzen.ag

65
Mods & Plugins (Releases & Support) / Re: [MOD] Buddy List || Friend List
« on: November 20, 2007, 03:42:44 PM »
Hey ladies,

I have installed the mod and it works with 1.7.1 too! :wink:

Ahm but the user pic in the buddy list does't work. I installed the "avatar" mod log time ago and not the "member personal photo".
Does anybode rewirte the addon acording the avatar mod? :idea:

Bye! 8O


66
Mods & Plugins (Releases & Support) / Re: [MOD] Buddy List || Friend List
« on: November 17, 2007, 12:52:31 AM »
Ah, great!!!

Thanks.

67
Mods & Plugins (Releases & Support) / Re: [MOD] Buddy List || Friend List
« on: November 16, 2007, 11:30:34 PM »
Hello gentleman,

does this Mod works with 1.7.1 ??

Thanks..

68
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 12, 2007, 06:16:17 PM »
YES!!!

So, this issue has been solved.

Thanks


69
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 12, 2007, 04:43:23 PM »
Yes, I but it doesn't work.
I had Insert in detail.php:

Quote
//-----------------------------------------------------
//--- Show Last images with thumbnails ----------------
//-----------------------------------------------------
$sql1 = "

SELECT i.image_id, i.image_name, i.image_thumb_file, i.image_media_file, i.cat_id" . get_user_table_field(", u.", "user_name") . "
FROM (" . IMAGES_TABLE . " i, " . CATEGORIES_TABLE . " c)
LEFT JOIN " . USERS_TABLE . " u ON (" . get_user_table_field("u.", "user_id") . " = i.user_id)
WHERE i.image_active = 1 AND i.cat_id = c.cat_id AND (i.cat_id NOT IN (".get_auth_cat_sql("auth_viewimage", "NOTIN").", ".get_auth_cat_sql("auth_viewcat", "NOTIN")."))
ORDER BY i.image_date DESC
LIMIT 3

";

$result = $site_db->query($sql1);
$num_rows = $site_db->get_numrows($result);

if (!$num_rows)  {
  $last_images_with_thumbnails = "<table width=\"".$config['image_table_width']."\" border=\"0\" cellpadding=\"".$config['image_table_cellpadding']."\" cellspacing=\"".$config['image_table_cellspacing']."\"><tr class=\"imagerow1\"><td>";
  $last_images_with_thumbnails .= $lang['no_new_images'];
  $last_images_with_thumbnails .= "</td></tr></table>";
}
else  {
  $last_images_with_thumbnails = "<table width=\"".$config['image_table_width']."\" border=\"0\" cellpadding=\"".$config['image_table_cellpadding']."\" cellspacing=\"".$config['image_table_cellspacing']."\">";
  $count = 0;
  $bgcounter = 0;
  while ($last_images_with_thumbnails_row = $site_db->fetch_array($result)) {
      $user_name = format_text(trim(ucfirst($last_images_with_thumbnails_row[$user_table_fields['user_name']]), 2));
     
    if ($count == 0) {
      $row_bg_number = ($bgcounter++ % 2 == 0) ? 1 : 2;
      $last_images_with_thumbnails .= "<tr class=\"imagerow".$row_bg_number."\">\n";
    }
    $last_images_with_thumbnails .= "<td width=\"".$imgtable_width."\" valign=\"top\">\n";

    show_image($last_images_with_thumbnails_row);
    $last_images_with_thumbnails .= $site_template->parse_template("thumbnail_bit_last_images");
    $last_images_with_thumbnails .= "\n</td>\n";
    $count++;
    if ($count == $config['image_cells']) {
      $last_images_with_thumbnails .= "</tr>\n";
      $count = 0;
    }
  } // end while

  if ($count > 0)  {
    $leftover = ($config['image_cells'] - $count);
    if ($leftover >= 1) {
      for ($f = 0; $f < $leftover; $f++) {
        $last_images_with_thumbnails .= "<td width=\"".$imgtable_width."\">\n&nbsp;\n</td>\n";
      }
      $last_images_with_thumbnails .= "</tr>\n";
    }
  }
  $last_images_with_thumbnails .= "</table>\n";
} // end else


$site_template->register_vars("lang_last_images_with_thumbnails_from_home", preg_replace("/" . $site_template->start . "user_name" . $site_template->end . "/siU", $user_name, $lang['last_images_with_thumbnails_from_home']));
$site_template->register_vars("last_images_with_thumbnails", $last_images_with_thumbnails);
unset($last_images_with_thumbnails);

and of course in details.html:

Quote
{last_images_with_thumbnails}

It seems, that is not enough?
Hmmpf, in my next life I will became a php programmer  :)

PS: I know you are german, but Ihink this issue could be intresting for english spoken users too.

KatzenAG

70
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 12, 2007, 02:26:15 PM »
A little question...how can I put the last images in other php files? e.g. in details.php etc?
I Assume I have to include it, but how? 8O

Best regards,
KatzenAG

71
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 10, 2007, 11:04:58 PM »
Hello guys!

I just would like give a feedback. Just have a look... great Job!



http://www.katzen.ag

72
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 08, 2007, 10:07:17 PM »
Hallo Jungs, hey guys,

your made a good Job - I*T*W*O*R*K*S

Danke noch einmal  :lol:

73
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 08, 2007, 08:31:20 PM »
Ah,...is ok...I could put this Item in to the Jobs threat...

However, thanks.

 

74
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 08, 2007, 07:12:38 PM »
Hi!

Yes it works perfect already.
I made a new thumbnail_bit ---> "thumbnail_bit_last_images" and changed that in index.php. I removed the lightbox and other things, there is just the thumb.
I need just one thing: I would like have the thumbs smaller in 60*45 px.

Any idea?

75
Mods & Plugins (Requests & Discussions) / Re: The good old "last Images"
« on: November 08, 2007, 12:28:19 PM »
Wow! Great support, thunderstrike!!  :D
I will try this today and than I will give a feedback after modification...

Thanks a lot!

Best regards,
KatzenAG

 

Pages: 1 2 3 4 [5] 6