forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: hc2995 on July 26, 2007, 08:11:18 pm

Title: "URL of your coppermine gallery folder", where is it stored?
Post by: hc2995 on July 26, 2007, 08:11:18 pm
Where is this particular part of the configuration stored? Iv checked the MySQL database a few times and i cant seem to find this particular part.... Im adding a system that will allow users to host the images from my gallery, and i need this to import the domain of the gallery, like this:

$pic_html .= "<table><tr><td>Image URL:</td><td><input type=\"text\" size=\"50\" readonly value=\"" . htmlentities($gallery_URL . get_pic_url($CURRENT_PIC_DATA, 'fullsize') . "",ENT_QUOTES) . "\" /></td></tr>";


But i need the system to be able to obtain $gallery_URL from where ever the information is stored......


Any help is thanked :P


Regards,
Hc2995
Title: Re: "URL of your coppermine gallery folder", where is it stored?
Post by: Nibbler on July 27, 2007, 12:40:36 am
It's in the db. If you are inside Coppermine you can get it from $CONFIG['site_url']
Title: Re: "URL of your coppermine gallery folder", where is it stored?
Post by: hc2995 on July 30, 2007, 12:00:12 pm
Ah, ok, thanks much ^^