Hello everyone...
I have "Coppermine Photo Gallery v1.4.18:" I have 2 seperate data bases. I have the script to extract the emails from the 1st gallery but not from the second, can someone point me in the right direction?
The directory is www.korentertainment.net/gallery2
Thanks in advance
The first thing you need to do is upgrade to the latest revision
http://coppermine-gallery.net/demo/cpg14x/docs/index.htm#upgrade_why
ok it is now updated.
You need to change your script to use the database name/user/password of your second gallery
Ok I have no clue as to how to do that.
I do not know anything about php.
Can U pont out what I am to do?
This is all I see.
I have 2 galleries,
first one is http://korentertainment.net/gallery
Second one is http://korentertainment.net/gallery2
Quote<?php
define('IN_COPPERMINE', 1);
require 'include/init.inc.php';
$test = CPG_db_query("SELECT DISTINCT(user_email) FROM {$CONFIG['TABLE_USERS']} WHERE user_email <> ''");
while ($row = mysql_fetch_assoc($test))
echo $row['user_email'] . "<br />";
?>
copy the file into your 2nd galleries root and call it with your webbrowser... that should do
I did that long ago and it didn't work.
Quote from: Stramm on January 16, 2009, 03:00:29 PM
copy the file into your 2nd galleries root and call it with your webbrowser... that should do
This is the message I'm getting
QuoteNot in Coppermine...
Fatal error: Call to undefined function: cpg_db_query() in /home/content/a/r/w/arwilliams/html/gallery2/view-user-email.php on line 5
try that
<?php
define('IN_COPPERMINE', true);
require 'include/init.inc.php';
$test = cpg_db_query("SELECT DISTINCT(user_email) FROM {$CONFIG['TABLE_USERS']} WHERE user_email <> ''");
while ($row = mysql_fetch_assoc($test))
echo $row['user_email'] . "<br />";
?>
I tried that and it extracted one email address "admin@mail.com"
Your code... I just changed the function name to a valid one (one that exists).
Nevertheless it works for me.
That gallery is bridged. You need to be extracting the emails from the forum not from Coppermine.
I'm assuming that I have to go to the support forum for my message board for that right?
Right.
Marking thread as "invalid".