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

Pages: 1 [2] 3 4 5 6 ... 10
16
Mods & Plugins (Requests & Discussions) / Re: [MOD] BilderPlanet Interface
« on: November 14, 2005, 03:50:22 PM »
hab einiges ausprobiert - aber nichts gefunden
schonmal mit ner neuen installation probiert?

Noch nicht. Werde es mal mit der neuen 1.7.1 versuchen, da ich bei meinen Seiten noch die 1.7 installiert habe.

Gruß

Markus

17
Español / Castellano / Re: [MOD] Nuevas opciones en Postales
« on: November 14, 2005, 03:42:56 PM »
It is possible to translate the mod?
Where is a demo of this mod?

Thanks!

Markus


18
Mods & Plugins (Requests & Discussions) / Re: [MOD] BilderPlanet Interface
« on: November 14, 2005, 03:33:33 PM »
Schade, hätte ein guter MOD werden können.
Leider habe ich die genannten Fehler leider immer noch.
Habe ihn jetzt erst mal wieder deinstalliert. :(

Gruß

Markus



19
Mods & Plugins (Requests & Discussions) / Re: [MOD] BilderPlanet Interface
« on: November 07, 2005, 06:08:12 PM »
Es besteht bei mir leider immer noch das Problem, dass die {cat_id} verschluckt wird und wenn ich eine feste Kategorie eingebe er mir ein Error 403 bringt.

Kannst Du Dir evtl. vorstellen, woran es liegen könnte?

Danke & Gruß

Markus

20
Mods & Plugins (Requests & Discussions) / Re: [MOD] BilderPlanet Interface
« on: November 07, 2005, 10:46:14 AM »
Können jetzt also USER nur ihre eigenen Fotos bestellen?

Code: [Select]
If you want to allow only, that user can print the own images:
in Details.html:

Was muss man ändern, damit nur registrierte USER Fotos bestellen können, egal von wem?
Ich möchte gern den Zugriff auf den BIG-Ordner nur dem affili-Programm erlauben. Ist das möglich?

Danke & Gruß

Markus



21
Hi,

vielen Dank für den MOD!
Auch hier habe ich bei mir mit folgender Zeile Probleme:

Code: [Select]
ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2
Gruß

Markus

22
Mods & Plugins (Releases & Support) / Re: [MOD] Pixaco Interface
« on: October 27, 2005, 08:19:18 PM »
Wo finde ich den so etwas mit dem zip?

So habe jetzt mod für Pixaco bropiert.
Bei mir kommt leider im Backend nur ne weiße Seite... Was mach ich den Falsch?

Schau mal hier:
http://www.4homepages.de/forum/index.php?topic=5813.0

Gruß

Markus





23
Mods & Plugins (Releases & Support) / Re: [MOD] Pixaco Interface
« on: October 27, 2005, 05:13:12 PM »
Hallo.

Bin ganz neu hier...

Also interessiere mich auch für so etwas, und werde diesen mod gleich ausprobieren...

Habe nur noch eine Idee, die den Programmierer (ich kanns nicht  :wink:) vielleicht weiter hilft:
man kann doch die lightbox nutzen eine zip generieren und zum schluss alles mit einmal an pixaco übertragen!?

So ich probiere mal den MOD.
So einen ähnlichen Mod gibt es schon.  :wink:
Mit den Platzhaltern hatte ich bisher keinen Erfolg, vielleicht hast Du mehr Glück.

Gruß

Markus

24
Thanks v@no. Next time I should explain it better. :oops:

Cheers,

Markus



25
Sorry, the ... stand for the Rest of your Home-Path

i.e. /usr/local/httpd/htdocs/.../Foto/ or /home/166413/http/foto ;)

Cheers,

Markus

My random_more.php without comments and image name:

Code: [Select]
<?php
/**************************************************************************
 *                                                                        *
 *    4images - A Web Based Image Gallery Management System               *
 *    ----------------------------------------------------------------    *
 *                                                                        *
 *             File: random_more_pics.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 / PFAD zu Ihrer 4images Gallerie
define('ROOT_PATH''/usr/local/httpd/htdocs/.../4images/');
define('YOUR_URL''http://www.4imagesurl.de/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;
}

// NUMBER OF THUMBNAILS TO DISPLAY / NUMMER DER GEWÜNSCHTEN THUMBNAILS
$num_images 5;

$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.
        ORDER BY RAND() 
        LIMIT 
$num_images";
$result $site_db->query($sql);

echo 
'<table><tr>'
while (
$row $site_db->fetch_array($result)){ 
$image_id $row['image_id']; 
$cat_id $row['cat_id']; 
$image_name $row['image_name']; 
$image_comments $row['image_comments']; 
$thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : YOUR_URL.THUMB_DIR."/".$cat_id."/".$row['image_thumb_file']; 

echo 
'<td>'
echo 
"&nbsp;<a target=\"_top\" href=\"".YOUR_URL."details.php?image_id=$image_id\"><img src=\"".$thumb_src."\" border=\"0\" alt=\"$image_name\"></a>\n"
echo 
'</td>'

echo 
'</tr></table>'


?>


26
Try this:

Code: [Select]
// PATH to your 4images Gallery / PFAD zu Ihrer 4images Gallerie
define('ROOT_PATH', '/usr/local/httpd/htdocs/.../foto/');

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

Good luck!

Markus

27
Mods & Plugins (Releases & Support) / Re: [MOD] Pixaco Interface
« on: October 26, 2005, 10:56:35 AM »
Gelungener Mod. Bei mir funzt der zwar noch nicht so, wie er soll, aber das wird schon.  :wink:
Idee für einen neuen Mod: Bilder-Planet.de Interface
Gruß
Markus
ist auch schon fertig und wartet auf freigabe durch bilder planet

Genial. Teste gerade noch ein paar Platzhalter. Ohne klappt es ja wunderbar.

Gruß

Markus

28
Mods & Plugins (Releases & Support) / Re: [MOD] Pixaco Interface
« on: October 25, 2005, 08:56:51 PM »
Vielleicht gibt es ja auch nur Probleme mit dem Platzhalter {cat_id}???

Gruß

Markus

29
Mods & Plugins (Releases & Support) / Re: [MOD] Pixaco Interface
« on: October 25, 2005, 08:10:10 PM »
das ist äusserst komisch, denn:
  • das testscript bekommt keinen bildnamen und gibt einen aus
  • die url stimmt nicht
hast du es schonmal ohne den big ordner probiert??
Warum, Du übergibst doch {image_file_name}???
Du ersetzt doch {cat_id} mit 666 oder bin ich schon zu sehr eingerostet. :roll:
Ohne den BIG-Ordner habe ich es auch schon mal versucht. Leider ohne Erfolg.

Gruß

Markus
 

30
Mods & Plugins (Releases & Support) / Re: [MOD] Pixaco Interface
« on: October 25, 2005, 06:25:42 PM »
Es sind geschweifte Klammern und bei beiden habe ich denselben Pfad eingetragen.
Beim Testscript erhalte ich folgende Ausgabe:
http://www.url.de/4images/data/media/666/big/20050730_14h06m50s.jpg

Hilft Dir das weiter?

Danke & Gruß

Markus

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