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 - Nicky

Pages: 1 ... 3 4 5 6 [7] 8 9 10 11 ... 188
91
@Andi,

du solltest vielleicht ein install script für die "anfänger" schreiben..
und noch etwas... nicht jeder hat den table prefix "4images_"

damit tun sich leute wie unser wiener donald23 vüüüüüüü leichter

@donald23
da Andi / Rembrandt ist auch einer von uns :)

btw.. donalds23 frage wurde per PN beantwortet..

92
Mods & Plugins (Releases & Support) / Re: [Mod] Mini-Top
« on: December 26, 2009, 07:35:37 PM »
V@no thank you for fix..

i merged that one and this one here.

93
Mods & Plugins (Requests & Discussions) / Re: zurück button / backbutton
« on: December 24, 2009, 11:45:23 AM »
chris,

V@no hat dir die richtige antwort auf deine frage gepostet.

was willst du genau machen?

LG

94
Discussion & Troubleshooting / Re: Lightbox Link
« on: December 23, 2009, 10:27:29 PM »
hi cch,

link is in template > user_logininfo.html

95
Discussion & Troubleshooting / Re: 'New Images' section not updating
« on: December 23, 2009, 07:36:48 PM »
hi,

send me your 4images admin account and ftp details.
i will look on that

96
Chit Chat / Re: VIELEN DANK
« on: December 21, 2009, 03:32:12 PM »
Hi baer2009 :)

vielen dank, gern geschehen und wünsche dir das gleiche.  :thumbup:

97
Discussion & Troubleshooting / Re: 'New Images' section not updating
« on: December 21, 2009, 03:24:03 PM »
hi TracyW and welcome to the 4images forum

i see that new images from the main site are added on "03.12.2009 21:06"

there are no newer pictures.. please correct me if i'm wrong.

98
Discussion & Troubleshooting / Re: keine Thumbnails mehr erstellbar
« on: December 20, 2009, 06:08:52 PM »
was ist mit der datei "09-Hst-SF12-0694.jpg" ist diese auch ok?

99
Discussion & Troubleshooting / Re: keine Thumbnails mehr erstellbar
« on: December 20, 2009, 05:01:15 PM »
hi,

V@no's post in deutsch:

mache folgendes

in der admin/thumbnailer.php
suche nach der
Code: [Select]
        $image_info = getimagesize(MEDIA_PATH."/".$image_row['cat_id']."/".$image_row['image_media_file']);
darunter füge dies ein
Code: [Select]
echo "<br>".MEDIA_PATH."/".$image_row['cat_id']."/".$image_row['image_media_file']."<br>";
die datei am server uploaden, und den thumbnailer nochmals starten..

es wird dir jetzt angezeigt um welches bild handelt es sich genau, welches den fehler verursacht.
in den meisten fällen ist es dass das bild korupt ist (beschädigt, nicht 100% hochgeladen, etc..)

lg

101
ahoi,

folgenden code als z.b. tiere.php in die root von der http://www.tierfreunde-info.com speichern.. dort wo die http://www.tierfreunde-info.com/index.html ist..

Code: [Select]
<?php
// PATH to your 4images Gallery / PFAD zu Ihrer 4images Gallerie
define('ROOT_PATH''./4images/');

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."
        AND b.cat_parent_id = 1
        "
;
$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."
        AND b.cat_parent_id = 1
        LIMIT 
$number, 1";
$row $site_db->query_firstrow($sql);
$image_id $row['image_id'];
$cat_id $row['cat_id'];
$image_name $row['image_name'];
$thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : ROOT_PATH.THUMB_DIR."/".$cat_id."/".$row['image_thumb_file'];

echo 
"<a href=\"".ROOT_PATH."details.php?image_id=$image_id\"><img src=\"".$thumb_src."\" border=\"0\" title=\"$image_name\" alt=\"$image_name\"></a><br>\n";
echo 
"<b>$image_name</b>\n";
?>

erklärung:
der php code liest nur die bilder aus den unterkategorien Tiere (cat_id 1), aus der kategorie Tiere bzw. unterkategorien der kategorie z.b. "Katzen" nicht (was du daweil e nicht hast)... also nur aus den kategorien wo die cat_parent_id = 1

folgendes in deine http://www.tierfreunde-info.com/index.html zufügen.. da es eine reine html seite ist

Code: [Select]
<script language="javascript" src="http://www.tierfreunde-info.com/tiere.php?1"></script>
fertig... have phun.

102
Installation, Update & Configuration / Re: Eigene Seiten
« on: December 16, 2009, 08:18:41 PM »
hallo Furore und willkommen im 4images forum,

du kannst die footer.html bearbeiten und zufügen was du willst.. nur die copyright hinweise müssen drinnen bleiben.

103
hi,

don't know if this mod is still working: http://www.4homepages.de/forum/index.php?topic=11447.0
but you can give a try.

104
Mods & Plugins (Requests & Discussions) / Re: Modifying {thumbnail} - How!
« on: December 16, 2009, 12:28:30 AM »
didoman,

includes/functions.php

search for
Code: [Select]
      $thumb = "<img src=\"".$file_src."\" border=\"0\"".$width_height." alt=\"".format_text($image_name, 2)."\" />";
replace with
Code: [Select]
      $thumb = "<img src=\"".$file_src."\" border=\"0\"".$width_height." alt=\"".format_text($image_name, 2)."\" title=\"".format_text($image_name, 2)."\" />";
and

search for
Code: [Select]
      $thumb = "<img src=\"".$file_src."\" border=\"".$config['image_border']."\"".$width_height." alt=\"".format_text($image_name, 2)."\" />";
replace with
Code: [Select]
      $thumb = "<img src=\"".$file_src."\" border=\"".$config['image_border']."\"".$width_height." alt=\"".format_text($image_name, 2)."\" title=\"".format_text($image_name, 2)."\" />";

105
Chit Chat / Re: In memory of manurom
« on: December 08, 2009, 02:37:24 PM »
bonjour Lydierom,

if i understand your post correctly: your father had 227 posts here: http://www.4homepages.de/forum/index.php?action=profile;u=21249;sa=showPosts

there was much more posts but your brother from your father or so, deleted once his account and there are a lot of post where "manurom" is a "guest"

Pages: 1 ... 3 4 5 6 [7] 8 9 10 11 ... 188