Okay, for now, the following modifications should get you in a position to use both simultaneously:
In
src/addons/vw/vw/_core/model/url/xf0.php, find:
Code:
$base_path = $this->base_path('admin') . '/admin.php?';
$route_path = 'wiki/';
Replace with:
Code:
$base_path = $this->base_path('admin') . '/admin.php?';
$route_path = 'vw/';
In the XenForo AdminCP, in development mode, go to Development > Navigation > Routes > Admin, click "wiki/" to edit. Change the Route Prefix to "vw" and Save.
Then, run the following MySQL query:
Code:
UPDATE xf_admin_navigation
SET link = REPLACE(link, 'wiki/', 'vw/')
WHERE addon_id = 'vw/vw'
Then, in the XenForo AdminCP, in development mode, go to Development > Navigation > Admin navigation, click any item to edit. Change the Route Prefix to something else, Save, then edit again, change the Route Prefix back to the original value, and Save.
The navigation in the AdminCP should now be deconflicted. We will work on adding a setting so this can be done much more easily in future versions.
If you don't see the Wiki admin menu in the navigation list, possibly you are not a Super Administrator. In that case, a Super Administrator will need to edit your user account's administrator permissions and grant it the "Manage VaultWiki" permission.