Then you must use a separate database connection.
Try this (remove the oder mods before doing so):
In pppanel.php FIND
PHP Code:
$query = "SELECT id,cat,title,bigimage,medsize FROM {$pp_prefix}photos WHERE userid = {$user} ORDER BY date DESC LIMIT $page,16";
$myphotos = $DB_site->query($query);
$numrows = $DB_site->num_rows($myphotos);
if ( $numrows < 16 ) $nextpage = 0;
$i=0;
$photorow="";
$photopanel="";
while ( $thisphoto = $DB_site->fetch_array($myphotos) ) {
REPLACE that with
PHP Code:
require_once('./includes/db_mysql.php');
$DB_site_pp = new DB_Sql_vb;
$DB_site_pp->appname = 'foobar';
$DB_site_pp->appshortname = 'foobar (barfoo)';
$DB_site_pp->database = 'photopost_db';
$DB_site_pp->connect('photopost_dvbserver', 'photopost_dbuser', 'photopost_dbpass', false);
$query = "SELECT id,cat,title,bigimage,medsize FROM {$pp_prefix}photos WHERE userid = {$user} ORDER BY date DESC LIMIT $page,16";
$myphotos = $DB_site_pp->query($query);
$numrows = $DB_site_pp->num_rows($myphotos);
if ( $numrows < 16 ) $nextpage = 0;
$i=0;
$photorow="";
$photopanel="";
while ( $thisphoto = $DB_site_pp->fetch_array($myphotos) ) {
Instead of foobar you could/should place something meaningful there
Also note that you must replace photopost_db, photopost_dbserver, photopost_user and pohotopost_pass with the actual values.
Don't know if this does work, but in theory it should.