Liste aller Fotos Liste aller Fotos
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Liste aller Fotos

Started by mirk, February 19, 2007, 12:33:39 AM

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

mirk

Hi com

habe etwas herumgesucht aber english ist nicht meine stärke.

Gibt es einen Plugin das mir eine Seite erstellt mit allen Fotos. Fotonamen als Linkt zum Foto. Ich hoffe man versteht mich. ich suche ein modul das mir alle fotos mit namen auflistet und mit dem entsprechendem foto verlinkt

danke & gruss
mirk

Joachim Müller

Quote from: mirk on February 19, 2007, 12:33:39 AM
Ich hoffe man versteht mich.
Sorry, verstehe nicht. Das ist doch genau das was Coppermine tut - wofür braucht es noch ein Plugin? Was soll das Wunder-Plugin genau tun?

mirk

eine seite auf der namen aller fotos gelistet werden mit dem link zum foto. eine art sitemap. brauche ich für indexierung bei suchmaschinen. habs gefunden im englishen teil des forum... hat etwas gedauert aber ich war mir sicher das es sowas sicher schon gibt. wers braucht (um allen weiteren das suchen zu ersparren:

<?php 
define
('IN_COPPERMINE'true);

require(
'include/init.inc.php');
pageheader(Fotoindex);

// Select all photos
$result mysql_query("SELECT a.pid, a.aid, a.title, a.caption, a.keywords, b.title atitle from {$CONFIG['TABLE_PICTURES']} a, {$CONFIG['TABLE_ALBUMS']} b where a.aid = b.aid order by a.aid, a.pid desc");
if (!
mysql_num_rows($result)) cpg_die(ERROR$lang_errors['non_exist_ap']);

$p_aid = -;

// Result to table
starttable("100%"Fotoindex3);

   while (
$row mysql_fetch_array($result)) 
        { 
                if (
$row[aid] != $p_aid) {
                  echo 
"<tr><td class=\"tableh2\" colspan = \"3\">$row[atitle]</td></tr>" ;
            }
            
// weer geef de data 
            
echo "<tr><td><a href=\"displayimage.php?pos=-$row[pid]\" title=\"$row[title]\">$row[title]</a></td><td>$row[caption]</td><td>$row[keywords]</td></tr>"
       
$p_aid $row[aid] ;
    } ; 
// while
                
endtable();
pagefooter();
?>


als php file abspeichern > hochladen > verlinken > fertig

gruss mirk

Joachim Müller

Bitte Link zum Original-Thread posten anstelle des Erzeugens von Code-Doubletten.