View Single Post
Old December 26th, 2004, 09:41 AM   #3 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,785
Okay two fixes as this is related to the PHP update which is wreaking havoc everywhere.

Open up your phpbb2.php file in the forums subdirectory of our product

Find

$md5cookpass="";

make it

$md5cookpass=""; $ubbgroups = array();

Basically you can place that array line anywhere up the top of the authenticate function below the $Global calls

Save and upload that file

Open the showphoto.php file and find this line

if ( !isset($cat) ) $cat = $dbcat;
$title = stripslashes( $title );
$keywords = stripslashes( $keywords );

add above

$keywords = array ();
__________________
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