Fabulous! I love how this works. I had to do the following tweaks to get it working with vb 3.6.8 and WP 2.3.1
- REPLACE all instances of
PHP Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH'));
WITH
PHP Code:
chdir('/home/brentan/public_html/vb36');
$vwd='/home/brentan/public_html/vb36';
- DELETE
PHP Code:
require_once(ABSPATH . 'wp-admin/admin-db.php');
- REPLACE
PHP Code:
require_once($vwd . '/includes/functions_misc.php');
WITH
PHP Code:
require_once('/home/brentan/public_html/vb36/includes/functions_misc.php');
- Followed 2 X Viverridae's advice on fixing the sanitize_url problem: https://vborg.vbsupport.ru/showpost....&postcount=633
Putting in so many of the paths as absolute seemed over-kill but it made it work! All systems go!