uae: I see the problem there and will post a v0.8a soon.
kylek: By default Admin has access to all features even if the settings are not set I believe.
If you want to get rid of this feature, look inside vBSupport.php inside the function get_admingroup_ids().
Remove the following code:
Code:
// make sure admins are in the group
if (!in_array(6, $admingroupids))
{
$adminsfound++;
$admingroupids[] = 6;
}
Then it will only use the settings set in the Usergroup settings.
mikexxx: Did you reupload the entire /UPLOAD folder to your server?
LoOnEyToOnZ: Did you choose allow overwrite when installing the plugin? It sounds like one of the queries didnt get ran properly.
Try to run this query:
Code:
ALTER TABLE " . TABLE_PREFIX . "attachment ADD COLUMN ticketreplyid INT UNSIGNED NOT NULL DEFAULT '0';
-CMX