Quote:
Originally Posted by speedracer68
Does this look correct? Do I have too many commas or am I missing one?
This is a section of INIT.PHP file
'canviewownusernotes' => 8192,
'canmanageothersusernotes' => 16384,
'canpostownusernotes' => 32768,
'canpostothersusernotes' => 65536,
'caneditownusernotes' => 131072,
// START VBGARAGE HACK
'canvbgarage' => 262144
// END VBGARAGE HACK
'canseehiddencustomfields' => 262144,
When I upload this file my forum crashes. I followed all the steps but this one I am a little confused on. When I upload my previous INIT.PHP file the site runs fine. In fact, you even see the vBGarage link at the top of the site and it works. Also, I don't see vbgarage listed in my Usergroup manager I don't see vbgarage listed so I can't enable it. Once again this just might be because I messed up my INIT.PHP file.
|
It needs to look like this
PHP Code:
'canviewownusernotes' => 8192,
'canmanageothersusernotes' => 16384,
'canpostownusernotes' => 32768,
'canpostothersusernotes' => 65536,
'caneditownusernotes' => 131072,
'canvbgarage' => 262144,
'canseehiddencustomfields' => 524288,
or like this
PHP Code:
'canviewownusernotes' => 8192,
'canmanageothersusernotes' => 16384,
'canpostownusernotes' => 32768,
'canpostothersusernotes' => 65536,
'caneditownusernotes' => 131072,
// START VBGARAGE HACK
'canvbgarage' => 262144,
// END VBGARAGE HACK
'canseehiddencustomfields' => 524288,