I'm installing vBAdvanced Portal.
I can't find 2 things... They are...
Quote:
In admincp/index.php
Find:
Code:
$printhr = false;
if (can_administer('canadmincalendars'))
Above that Add:
Code:
construct_nav_option($vbphrase['default_settings'], 'vba_cmps_admin.php?do=modifysettings');
construct_nav_option($vbphrase['edit_modules'], 'vba_cmps_admin.php?do=listmodules');
construct_nav_option($vbphrase['add_module'], 'vba_cmps_admin.php?do=addmodule');
construct_nav_option($vbphrase['edit_pages'], 'vba_cmps_admin.php?do=listpages');
construct_nav_option($vbphrase['add_page'], 'vba_cmps_admin.php?do=addpage');
construct_nav_group($vbphrase['vba_cmps']);
construct_nav_spacer();
|
Quote:
In includes/functions.php
Find:
Code:
if (THIS_SCRIPT == 'online' OR THIS_SCRIPT == 'calendar' OR (THIS_SCRIPT == 'index' AND $vboptions['showevents']))
Replace With:
Code:
if (THIS_SCRIPT == 'online' OR THIS_SCRIPT == 'calendar' OR (THIS_SCRIPT == 'adv_index') OR (THIS_SCRIPT == 'index' AND $vboptions['showevents']))
|
I can't find either of them. What else can I do?