|
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 ();
|