Quote:
Originally Posted by Tsukasa-san
Aha. Just noticed it.
Code:
[25-Jul-2007 16:05:30] PHP Warning: require_once(/includes/class_bbcode.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in c:\domains\caliburn-l2.com\webroot\news\wp-content\plugins\vbbridge.php on line 350
[25-Jul-2007 16:05:30] PHP Fatal error: require_once() [<a href='function.require'>function.require</a>]: Failed opening required '/includes/class_bbcode.php' (include_path='.;c:\php\includes') in c:\domains\caliburn-l2.com\webroot\news\wp-content\plugins\vbbridge.php on line 350
Line 350:
Code:
require_once($vwd . '/includes/class_bbcode.php');
$vwd=
I believe the "Forum URL" setting on the Vbridge settings defines that. It's set correctly though. Forum Relative path as well (/forums) I tried your absolute path fix, but no luck.
EDIT:
Well, resolved that. But now I get
Code:
Class 'vBulletinHook' not found in e:\domains\l2aethernia.com\wwwroot\forums\includes\class_bbcode.php on line 2397
And yes, the Plugin/Hook system is turned on.
|
Exactly same pbr here :
#1 : got the error on line 350 when adding VB comments feature to WP.
#2 : modified
PHP Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH'));
into
PHP Code:
chdir('/my/absolute/path/to/vb/dir');
but it didn't help
#3 : modified the line 350
from
PHP Code:
require_once($vwd . '/includes/class_bbcode.php');
to
PHP Code:
require_once( '/home/httpd/vhosts/MyDomain/httpdocs/boards/includes/class_bbcode.php');
and this solved the "
Failed opening required '/includes/class_bbcode.php' (include_path='.;c:\php\includes')" error
#4 now i'm also getting the "
Fatal error: Undefined class name 'vbulletinhook' in /home/httpd/vhosts/ladln.org/httpdocs/boards/includes/class_bbcode.php on line 2357" error (i also tried the define('DISABLE_HOOKS', true); )
any ideas ?