i got it working. If its a new install of the garage i couldnt get it working.
If its already installed, and you're upgrading your forum do this:
The includes/init.php file already has a value assigned to it by vb in the latest upgrade.
The
Code:
'caneditownusernotes' => 131072
now has another line underneath it in vb 3.0.3
In the includes/init.php where you're supposed to put
Code:
'caneditownusernotes' => 131072,
// START VBGARAGE HACK
'canvbgarage' => 262144
// END VBGARAGE HACK
and thats it for that part.
Now you will need to put:
Code:
'caneditownusernotes' => 131072,
// START VBGARAGE HACK
'canvbgarage' => 262144,
// END VBGARAGE HACK,
Then change the value of
Code:
'canseehiddencustomfields'
to
16777216
so that it will now look like this:
Code:
'caneditownusernotes' => 131072,
// START VBGARAGE HACK
'canvbgarage' => 262144,
// END VBGARAGE HACK,
'canseehiddencustomfields' => 16777216,
I havent much experience with this stuff, but this was the only way i could make sense of it to get it to work.
If someone has a correction or a better way, please post and let us know.
Thanks.