I must have made a mistake somewhere along the line...
Anyway, I couldn't log in to my wordpress anymore and tried to use the resetvbbridge.php file but it didn't work and it gave me an error. I opened up the file and saw the error, figured it might help a few people out...
Code:
<?php
require_once( dirname(__FILE__) . '/wp-load.php' );
update_option('vbb_VBION, 0);
echo "Vbbridge integration disabled!";
should be
Code:
<?php
require_once( dirname(__FILE__) . '/wp-load.php' );
update_option('vbb_VBION', 0);
echo "Vbbridge integration disabled!";