forum.coppermine-gallery.net

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: NigelH on October 30, 2003, 03:06:08 pm

Title: Getting the absolute filename?
Post by: NigelH on October 30, 2003, 03:06:08 pm
I would like to be able to list the absolute filename in the details when a user views image details.  As standard it shows the url which is effectively a call through the script, I need the absolute address to be shown i.e.

http://www.xxx.co.uk/coppermine/filename.jpg

Is that possible and how?

Many thanks.

PS Just discovered Coppermine and it's incredible!  Well, written and very well presented, I almost feel guilty using it for nothing!
Title: Getting the absolute filename?
Post by: Joachim Müller on October 31, 2003, 06:28:53 am
edit displayimage.php and look for
Code: [Select]
   // Create the absolute URL for display in info
    $info['URL'] = '<a href=' . $CONFIG["ecards_more_pic_target"] . '/' . basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . ' >' . $CONFIG["ecards_more_pic_target"] . '/' . basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . '</a>';
Replace it with
Code: [Select]
   // Create the absolute URL for display in info
    $info['URL'] = '<a href=' . $CONFIG["ecards_more_pic_target"] . '/' . basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . ' >' . $CONFIG["ecards_more_pic_target"] . '/' . basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . '</a><br /> '.$CONFIG["ecards_more_pic_target"].$path_to_pic;

In the same way, you can make it clickable, but what's the point of having the naked pic instead of the full url to the html with the embedded pic?

GauGau