PDA

View Full Version : error in my admin cp


djjeffa
01-05-2005, 09:21 PM
i must have did a boo boo cause in tha admin cp when i go to user group manager i get :Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/djjeffa/public_html/vb/admincp/usergroup.php on line 139

line 139 'shouthierarchy' => 5, 'shoutmaxdaily' =>0

here is some of the coding wher line 139 is
// set default numeric permissions
$usergroup = array(
'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
// ## <ucs>
'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000, 'uttstore_discount' => 0'
// ## </ucs>,
'shouthierarchy' => 5, 'shoutmaxdaily' =>0
);

}
print_table_header($vbphrase['add_new_usergroup']);
}
else
{
$usergroupid = intval($_REQUEST['usergroupid']);
$usergroup = $DB_site->query_first("
SELECT * FROM " . TABLE_PREFIX . "usergroup
WHERE usergroupid = $usergroupid
");

$ug_bitfield = array();
foreach($_BITFIELD['usergroup'] AS $permissiongroup => $fields)
{
$ug_bitfield = array_merge(convert_bits_to_array($usergroup["$permissiongroup"], $fields) , $ug_bitfield);
}

Link14716
01-05-2005, 09:28 PM
Yes, there is something wrong there.

Replace this: $usergroup = array(
'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
// ## <ucs>
'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000, 'uttstore_discount' => 0'
// ## </ucs>,
'shouthierarchy' => 5, 'shoutmaxdaily' =>0
);
With this: $usergroup = array(
'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000, 'uttstore_discount' => 0,
'shouthierarchy' => 5, 'shoutmaxdaily' => 0
);

Always look for comma placement.

djjeffa
01-05-2005, 09:54 PM
Yes, there is something wrong there.

Replace this: $usergroup = array(
'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
// ## <ucs>
'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000, 'uttstore_discount' => 0'
// ## </ucs>,
'shouthierarchy' => 5, 'shoutmaxdaily' =>0
);
With this: $usergroup = array(
'pmquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
'avatarmaxwidth' => 50, 'avatarmaxheight' => 50, 'avatarmaxsize' => 20000,
'profilepicmaxwidth' => 100, 'profilepicmaxheight' => 100, 'profilepicmaxsize' => 25000, 'uttstore_discount' => 0,
'shouthierarchy' => 5, 'shoutmaxdaily' => 0
);

Always look for comma placement.
thank you for the fast and perfect responce
having a cellphone forum with over 10,000 members I know its hard to be ther to answer each question and I apreciate it.