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 - Sebas Bonito

Pages: [1] 2 3 4 5 ... 19
1
Ich finde das grandios, bin aber irritiert, dass in 6 Wochen keiner darauf geantwortet hat.
Ist das Template (komplett mit Download) schon fertig?

2
Gleiches Problem bei mir! Gibt es "schon" eine Lösung?

UPDATE: This helped.

3
Could you pls report these errors? Additional: How about the server-error-log?

4
Feedback & Suggestions / Re: 4images 1.7.8. - Feedback
« on: August 09, 2010, 11:20:28 PM »
Alle die schon heute gerne updaten möchten, für die gibt es das Tool Winmerge!

Mit dieser Software können zwei unterschiedliche Versionen ( z.B. 1.7.7 und 1.7.8 ) verglichen werden, Unterschiede werden farblich markiert.
http://winmerge.org/

das hatte ich schonmal probiert, aber irgendwie ging das in die hose

ich warte bis die Update Anleitung rauskommt

Dito, denn letztendlich müsste man drei Varianten vergleichen: die neue, die Version 1.7.7 und dann die eigene. Ein Wahnsinn von Arbeit!

5
Feedback & Suggestions / Re: 4images 1.7.8. - Feedback
« on: August 09, 2010, 07:29:27 PM »
Gibbet keinen richtigen Changelog mit den genauen Veränderungen? Bei den gefühlten 10 Milliarden eingebauten MODs wird das Update zur Sisyphusarbeit.

6
Actually, I don't know, why {media_url} works for picture  :lol:

But many thanx, the tag {thumbnail_file_name} is what I've searched for.  :D

7
To present the thumbnail as a standard picture for the Facebook-Sharing-Function I've add the following meta-tag in the header:

Code: [Select]
<meta property="og:image" content="{if details}http://domain.com/data/thumbnails/{cat_id}/{media_url}{endif details}{ifnot details}http://domain.com/standard_preview_jpg{endifnot details}">
As you can see, if you share a picture (of the details-page) in Facebook, it will present the original thumbnail; otherwise it will show a standard-picture for all the other pages. BUT the code above might be wrong for videos, cause {media_url} is the whole link to the video instead of the thumbnail-filename. What's the 4images-tag for the video-thumb? Is there a possibility?

8
Quote from: stb
2) default display resized image, but make smthn. like button "hi res" to view an original

On my site I use [Mod] Show original image in new window by clicking on image.
And this mod automaticaly copy original file to /big/ folder if the image is being resized (/big/ folder also automaticaly created if its not exist).
Just need use in Step 1. this code:
Code: [Select]
//--------------------------------------------
//--------- Auto Image Resizing --------------
//--------------------------------------------
                  if ($config['auto_image'] && !$uploaderror) {
                     $src_copy = MEDIA_PATH."/".$cat_id."/big";
                     if ($direct_upload) {
                        $src = MEDIA_PATH."/".$cat_id."/".$new_name;
                        $src_copy = MEDIA_PATH."/".$cat_id."/big";
                    }
                    else {
                        $src = MEDIA_TEMP_PATH."/".$new_name;
                    }
                    $do_resize = 0;
               if ($image_info = @getimagesize($src)) {
                       if ($image_info[2] == 1 || $image_info[2] == 2 || $image_info[2] == 3) {
                          $do_resize = 1;
                     }
                   }
                   if ($do_resize) {
                     if (!function_exists(init_convert_options)) {
                           require(ROOT_PATH.'includes/image_utils.php');
                        }
                        $convert_options = init_convert_options();
         if (!$convert_options['convert_error']) {
if ($image_info[0] > $config['max_image_width'] || $image_info[1] > $config['max_image_height']) {
$result = true;
 if (!@is_dir($src_copy)) {
   $oldumask = umask(0);
   $result = mkdir($src_copy);
   umask($oldumask);
   if (!@is_dir($src_copy) || !$result) {
     $result = mkdir($src_copy, 0755);

   }
 }
if ($result == true){
copy($src, $src_copy."/".$new_name);
}
                     $convert_options = init_convert_options();
                     if (!$convert_options['convert_error']) {
                       $quality = (intval($config['auto_image_quality']) && intval($config['auto_image_quality']) <= 100) ? intval($config['auto_image_quality']) : 100;
                      if (!resize_image($src, $quality, $config['max_image_width'], 1)) {
                        $msg .= (($msg != "") ? "<br />" : "")."<b>".$lang['file_upload_error'].": ".$new_name;
                           $uploaderror = 1;
                        }
                    }
                  }else{
                  $do_resize = 0;
                  }
                       }
                     }
                  }
//-------------------------------------------

P.S. it works on my windows system, dont know about any others :roll:

I still do need help to resize also the big/original-file. In my gallery some pictures are 7 Megabyte (!), too much :-) So I've resized all my big-images by an php-image-resizer to a max-height or max-width of 1600px and a jpg-quality of 75. This took many hours!

I'd like to have this function in 4images for the original-image, before it will be copied in to the big-folder.

So please, I do hope, somecone could help me out...

9
Wo ist der besser?  8O

10
Mods & Plugins (Requests & Discussions) / Re: MOD PhotoBlog
« on: July 02, 2010, 03:40:37 PM »
Das wäre wirklich der absolute Hammer, weil ich derartiges schon ewig suche: Zusätzliche Infos für die Kategorien, die von den Usern befüllt werden können.

11
The graphic-version works fantastic, BUT...

...instead of the graphic-buttons I do only use text-buttons in the functions.php:

Code: [Select]
$lightbox_button = "<a href=\"".$site_sess->url($lightbox_url)."\" title=\"a favourite Picture.\" class=\"button_active\" >Lightbox</a>";and
Code: [Select]
$lightbox_button = "<a href=\"".$site_sess->url($lightbox_url)."\" title=\"not a favourite Picture yet.\" class=\"button\">Lightbox</a>";
The difference is just the background-color, which is given by the css-class "button" / "button_active".

So how to change (I guess the lightboxaction.php) to change only the backgroundcolor or the class after click the link?

Thanx!

12
Requests for paid modifications / Jobbörse / Re: Facebook Connect
« on: June 07, 2010, 11:12:18 PM »
Looks and sounds great.  8)

13
Mods & Plugins (Requests & Discussions) / Re: MOD PhotoBlog
« on: June 05, 2010, 06:36:15 PM »
auf der Detailseite einen Link zum BLOG, in dem dann die Bildbeschreibung oder ähnliches zu sehen ist?

Ja, fast: In der Übersicht der Kategorie. Und dann kein Link zum Blog, sondern den dazugehörigen Text mit den Blogs inkludieren...

Beispiel:

gegeben:
Kategorie A, Kategorie B, User1, User2, User3

Voraussetzung:
User1: Blog/Text über Kategorie A + B geschrieben
User2: Blog/Text über Kategorie A geschrieben
User3: Blog/Text über Kategorie B geschrieben

Ausgabe:
Profilseite: Die eigenen Blogs/Texte (über die Kategorien) untereinander gelistet
Kategorie A: Blog/Text von User1 + User2 (unter den Thumbs)
Kategorie B: Blog/Text von User1 + User3

Der Hintergrund der ganzen Geschichte: Blogs sind wirklich eine tolle Sache, können
mehr und suggerieren mehr Umfang. In meinem Fall bietet es sich an, eine Art
Erfahrungsbericht pro Kategorie zu erstellen. Einzelne Bilder/die Details wären
zu spezifisch und würden nicht den Zweck erfüllen. Man könnte es auch als
"Kommentare für Kategorien" bezeichnen, Dein Blog wäre aber vermutlich ein guter
Ansatz, da er bereits in der Profil-Seite integriert ist.

Besten Dank!

14
Mods & Plugins (Requests & Discussions) / Re: MOD PhotoBlog
« on: June 05, 2010, 03:53:54 PM »
Bestünde die Möglichkeit, den Blog bzw. eine Blog-Kategorie mit einer Bild-Kategorie zu verknüpfen, und dann alle Blog-Einträge (die zu einer speziellen Bild-Kategorie gehören) textlich in der Bild-Kategorie aufzulisten?

So hätte man auf der einen Seite einen eigenständigen Blog für jeden Benutzer und in den User-Profilen.

Zum anderen könnte man so die "Berichte" zu einer speziellen Kategorie geschlossen/gemeinsam in der dazugehörigen Kategorie präsentieren.

Vielleicht gibt es bereits eine ähnliche MOD, die das erfüllt; ich konnte bislang aber nichts finden.

Besten Dank!

15
For me the same... I need something like this.

Pages: [1] 2 3 4 5 ... 19