Okay, to everyone experiencing the
"cannot_redeclare"-error:
In my case it was due to
vbb_PLUGION being set to 0 instead of 1.
Check your wp_options table for this entry and just set it back to '1'.
Also I've searched for the function causing the value-change and only found the following one so far:
PHP Code:
if (!file_exists($vwd . '/global.php')) {
echo "cannot include $vwd/global.php. You should check your path! Turning Plugin Off";
update_option('vbb_VBPLUGION', 0);
exit;
}
I've changed it to
PHP Code:
update_option('vbb_VBPLUGION', 1);
Seems like sometimes the global.php file can't be accessed and therefore the script automatically sets vbb_VBPLUGION back to 0. Would be interesting though to get some more details about this problem.