A minor bug fix:
In the file, FIND:
PHP Code:
$jgenerateurl = "wget -O /dev/null \"$yourvburl/news2vb.php?jaction=postnews&jpassword=$checkpassword&jforum=$jforum";
$checkpassword should be $jcheckpassword, otherwise the direct URL does not have the password.
Replace with:
PHP Code:
$jgenerateurl = "wget -O /dev/null \"$yourvburl/news2vb.php?jaction=postnews&jpassword=$jcheckpassword&jforum=$jforum";
That's it.