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

Pages: 1 [2] 3 4 5 6 ... 33
16
Installation, Update & Configuration / Re: Templatekompatibilität?
« on: March 27, 2008, 09:06:07 AM »
Na Grüß Gott,

das zweite von dir genannte Kommentarantispamaddon hatte ich mal installiert. Ich wühle mich mal durch, ob und wie ich da was für die E-Card umwursteln kann.

Für ein Update müssen auch auch die templates geändert/ergänzt werden, wie ich eben sehe... Wenn ich mal einen Tag lang Zeit habe, setze ich mich sicher mal an ein Update, ist ja auch sinnvoll.

Sonst sehe ich mich hier allgemein auch mal wieder etwas um. :D

Grüße


17
Installation, Update & Configuration / Templatekompatibilität?
« on: March 26, 2008, 03:27:14 PM »
Schön, wieder hier zu sein, bzw zu sehen, dass noch einige Mitglieder von "früher" hier sind. Detlev, was du aus deiner Seite gemacht hast, ist ja wahnsinn!  8O

Eigentlich suchte ich lediglich ein Capta-Plugin für die E-Cards, es scheint aber kein eigenes dafür zu geben, da es die aktuelle Version bereits beinhaltet. Bisher scheute ich immer Updates von der 1.7.0 zu aktuellen Versionen, da ich viele manuelle Änderungen vornahm. Die einzelnen Securityfixes spielte ich freilich immer ein.

www.duesipixel.de:

Daher mal einige Fragen:
mein aktuelles Template, arbeitet das auch mit der 1.7.6?
Die Suchstatistik auch? http://duesipixel.de/suchstatistik.php Die Tabellen werden beim Ausführen der Updateskripte ja nicht gelöscht, oder?

Sonst weiß ich nicht mehr auswendig, was ich änderte. Die Zufallsbilder auf der Startseite jedenfalls und ich tauschte in den templates das Loginformular gegen das Menü. Das Aufrufen der templates wie .../index.php?template=impressum bleibt auch, oder?

Danke und Grüße


18
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: February 08, 2007, 11:22:52 AM »
For all who don´t see an image and source code looks like
<img src="http://.../data/thumbnails/36/" border="0" ...>

this works
http://www.4homepages.de/forum/index.php?topic=1020.msg12102#msg12102

19
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: February 05, 2007, 12:22:56 AM »
Ich habe nun schon einiges gelesen und gestet, allerdings wird bei mir das thumbnail nicht angezeigt. Statt der kompletten Bildadresse kommt nur das hier:

http://duesipixel.de/random_full.php

Code: [Select]
<a href="http://duesipixel.de/details.php?image_id=1240"><img src="http://duesipixel.de/data/thumbnails/36/" border="0" alt="Jahresabschluss05 in Speyer"></a><br>
$row['image_thumb_file'] wird nicht umgewandelt?

Hier die random.php

Code: [Select]
<?php
/**************************************************************************
 *                                                                        *
 *    4images - A Web Based Image Gallery Management System               *
 *    ----------------------------------------------------------------    *
 *                                                                        *
 *             File: random_full.php                                      *
 *        Copyright: (C) 2002 Jan Sorgalla                                *
 *            Email: jan@4homepages.de                                    *
 *              Web: http://www.4homepages.de                             *
 *    Scriptversion: 1.0 for 4images 1.6.1                                *
 *                                                                        *
 *    Never released without support from: Nicky (http://www.nicky.net)   *
 *                                                                        *
 **************************************************************************
 *                                                                        *
 *    Dieses Script ist KEINE Freeware. Bitte lesen Sie die Lizenz-       *
 *    bedingungen (http://www.4homepages.de/4images/lizenz.php) für       *
 *    weitere Informationen.                                              *
 *    ---------------------------------------------------------------     *
 *    This script is NOT freeware! Please read the Copyright Notice       *
 *    (http://www.4homepages.de/4images/lizenz_e.php) for further         *
 *    information.                                                        *
 *                                                                        *
 *************************************************************************/

// PATH TO YOUR 4images Gallery
define('ROOT_PATH''/home/w11854/web/public_html/newgalerie/');

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

define('SCRIPT_URL''http://duesipixel.de/');

$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 IN (35, 36, 58, 59, 61, 66)
        AND b.cat_id IN (35, 36, 58, 59, 61, 66)
        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_media_file, a.image_comments, b.cat_name  
        FROM "
.IMAGES_TABLE." a, ".CATEGORIES_TABLE." b 
        WHERE a.image_active=1 
        AND a.cat_id IN (35, 36, 58, 59, 61, 66)
        AND b.cat_id IN (35, 36, 58, 59, 61, 66)
        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'];       
$cat_name $row['cat_name'];
$image_name $row['image_name'];
$image_comments $row['image_comments'];
$thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : SCRIPT_URL.THUMB_DIR."/".$cat_id."/".$row['image_thumb_file'];


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

Weiß jemand woran das liegt??

20
Thank you verry much!

21
Feedback & Suggestions / Searchplugins for Firefox, Netscape und Opera
« on: September 19, 2006, 08:48:11 AM »
english:
Searchplugins for Browser Firefox, Netscape und Opera. Tested versions: Firefox 1.0.5 and 1.5.0.7, Netscape 7 and 8.1, Opera 8.01.

I wrote instructions in english and german how to instal searchplugins for your browser to easily search your 4images galery. You can read it in both languages (for english just scroll down) on my blog and there you can download example files (use duesipixel.src that´s for my galery and change my url in that file into yours).

I hope someone can use this for his own blog, just change my url in yours. I also hope, that my instructions are understandable.

deutsch:
Ich habe eine Anleitung und Beispieldateien für Searchplugins für die Browser Firefox, Netscape und Opera online gestellte. Getestet mit den Versionen: Firefox 1.0.5 und 1.5.0.7, Netscape 7 und 8.1, Opera 8.01. Mit den browserintegrierten Suchplugins könnt ihr einfach eure 4images Galerie durchsuchen.

Die Anleitungen gibt es hier.

Ich hoffe, dass dies jemand für sich verwenden kann. Die Anleitungen und Dateien für die Galeriesuche könnt ihr einfach für eure 4images Galerie einsetzen, wenn ihr meine durch eurer url (in der Datei duesipixel.src) austauscht.

Lobeshymnen aber auch gerne Vorschläge oder eine vielleicht besser verständliche Anleitung in englisch sind auch in den Kommentaren willkommen.

22
Mods & Plugins (Releases & Support) / Re: [MOD] Slideshow II
« on: September 19, 2006, 08:39:46 AM »
Ich habe die Daishow installiert und bin begeisert!!
Leider läuft sie bei mir, wie auch oft zuvor beschrieben, nur als angemeldeter Admin.
Ich habe auch schon die paging.php erneuert - bringt allerdings nichts.

Kann es daran liegen, dass ich das Template
4default_no_user http://www.vierstra.com/4images_templates.htm installiert habe.
Ich muss gestehen, dass ich auch schon einiges abgeändert habe.

Vielleicht hift ja auch ein Blick auf meine Gallery: http://dowo.dyndns.org/bild/

Vielen Dank im voraus

Dieter

Hallo Dieter,

deine Slideshow läuft doch, lediglich der Button wird nicht angezeigt, den kannst du aber auch manuell woanders einbinden.

Grüße

Matthias ;)

23
Danke für die Info und die Mailbenachrichtigung

24
Installation, Update & Configuration / Re: top 100 beste bilder
« on: May 07, 2006, 07:34:16 PM »
templates/yourtemplatepack/top.html

Dort die TOPs einfach weiterführen, von denen du mehr angezeigt bekommen haben möchtest. Z.B. für TOP HITs

Code: [Select]
   <tr>
                            <td valign="top" class="row2" align="center"><b>10</b></td>
                            <td valign="top" class="row2">{image_hits_10}</td>
                            <td valign="top" class="row2">{image_hits_user_10}</td>
                            <td valign="top" class="row2">{image_hits_cat_10}</td>
                            <td valign="top" class="row2" nowrap>{image_hits_number_10}</td>
                          </tr>
                          <tr>
                            <td valign="top" class="row1" align="center"><b>11</b></td>
                            <td valign="top" class="row1">{image_hits_11}</td>
                            <td valign="top" class="row1">{image_hits_user_11}</td>
                            <td valign="top" class="row1">{image_hits_cat_11}</td>
                            <td valign="top" class="row1" nowrap>{image_hits_number_11}</td>
                          </tr>

Das dann eben so weiterführen.

In der top.php muss dann das jeweilige LIMIT hochgesetzt werden. Dort sind Kommentare wie "// Hits", woran du erkennst, um welche es sich handelt. Zum Beispiel für HITs von standard
LIMIT 10";
in LIMIT 100";  ändern

Mit der Galerieversion 1.7 geht das so. Viel Glück ;)

25
Mods & Plugins (Releases & Support) / suggestions
« on: April 03, 2006, 08:17:35 PM »
In "secure code at comment"-thread we´ve worked some suggestions out, how this Ban Mod can be improved
http://www.4homepages.de/forum/index.php?topic=11405.msg66532#msg66532

You´re right, I´ve tested this Mod now.

An Improvement would be to ban
- selected comment headline
- selected comment text

- to add an obligatory email field und ban selected email adresses

just some ideas :)

26
You´re right, I´ve tested this Mod now.

An Improvement would be to ban
- selected comment headline
- selected comment text

- to add an obligatory email field und ban selected email adresses

27
After installing this Mod I have Spam, too. But only 1 spam comment a day.

Now I´ll try this Mod
http://www.4homepages.de/forum/index.php?topic=7066.msg31011#msg31011

28
Installation, Update & Configuration / Re: Images are not uploading :(
« on: March 18, 2006, 12:18:50 PM »
just have a look at the FAQ-forum
http://www.4homepages.de/forum/index.php?topic=6836.0

And check your directory permissions

29
Installation, Update & Configuration / Re: itpc und 4images
« on: March 17, 2006, 04:44:08 PM »
Ja, das Aufklappen habe ich selbst gemacht.

Dieser recht umfangreiche Mod, fügt beim Checken der Bilder im Kontrollmenü automatisch die IPTC Daten ein.
http://www.4homepages.de/forum/index.php?topic=4754.0

30
Chit Chat / what happend?
« on: March 16, 2006, 09:52:37 PM »
Do only I miss all the Threads :?:


Pages: 1 [2] 3 4 5 6 ... 33