Quote:
Originally Posted by jimheiden
Actually, I am only able to get to the write page to make a test post now. To get that far, I had to hard code the absolute path in vbbridge.php as instructed. WP is installed in the webroot folder, VB in /forum of the webroot. When I attempt a test post, I get this error:
Code:
Warning: chdir() [function.chdir]: No error (errno 0) in D:\####\wp-content\plugins\vbbridge.php on line 86
Warning: require_once(./includes/class_dm.php) [function.require-once]: failed to open stream: No such file or directory in D:\hshome\####\wp-content\plugins\vbbridge.php on line 92
Fatal error: require_once() [function.require]: Failed opening required './includes/class_dm.php' (include_path='.\;C:\HSphere.NET\3rdparty\PHP\5.2.5\PEAR') in D:\####\wp-content\plugins\vbbridge.php on line 92
Any idea what is causing this?
|
Ok, so I've realize that in vbbridge.php, there are a few references to the VB includes folder that look like this:
Code:
require_once('./includes/class_dm.php');
but should be like this
Code:
require_once($vwd . './includes/class_dm.php');
right? After changing those lines, I can now post in WP and an entry is properly made in VB, however I always get this error here
Code:
Warning: chdir() [function.chdir]: No error (errno 0) in D:\####\wp-content\plugins\vbbridge.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at D:\####t\forum\includes\class_core.php:3075) in D:\####\wp-includes\pluggable.php on line 685
I get it when I delete the post too. Has anyone experienced anything similar?