A bit of fiddling... I would guess this is an issue with php's handling of errors. I know some installations will return a blank page instead of just printing out errors... if you include something that can't be found (such as the fckeditor without the proper path), you get an error, which PHP then supresses and gives you a lovely white page for.
A reasonable workaround I've found is simply changing (in ./admincp/vbarticles.php):
PHP Code:
include_once (''.$vbart_options['wysiwygpath'].'fckeditor.php');
to:
PHP Code:
if (file_exists(''.$vbart_options['wysiwygpath'].'fckeditor.php'))
include_once (''.$vbart_options['wysiwygpath'].'fckeditor.php');