View Single Post
Old September 27th, 2005, 07:35 AM   #2 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,056
Hello yep I see the issue here in admin-cats.php

$querya="SELECT user FROM {$Globals['pp_db_prefix']}photos where userid=$uid ORDER BY date DESC LIMIT 1";
$userq = ppmysql_query($querya, $link);
list( $username ) = mysql_fetch_row($userq);
ppmysql_free_result($userq);


This above you need to replace with this

list( $userid, $username, $email ) = get_userinfo("", $uid);


The current code is only coded to be used with a standalone install
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote