Quote:
Originally Posted by rsuplido
Yes, this mod only allows the vB registered members to post comments.
|
I got this problem:
Warning: main(): Failed opening '' for inclusion (include_path='.:/usr/local/lib/php') in /homepages/28/d109317046/htdocs/xp9/blog/wp-admin/post.php on line 4
And the code from line 1-20 in wp-admin/post.php is
PHP Code:
<?php
require_once('admin.php');
include_once (ABSPATH . WPINC . '/vb3-settings.php')>
$wpvarstoreset = array('action', 'safe_mode', 'withcomments', 'posts', 'content', 'edited_post_title', 'comment_error', 'profile', 'trackback_url', 'excerpt', 'showcomments', 'commentstart', 'commentend', 'commentorder' );
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
$wpvar = $wpvarstoreset[$i];
if (!isset($$wpvar)) {
if (empty($_POST["$wpvar"])) {
if (empty($_GET["$wpvar"])) {
$$wpvar = '';
} else {
$$wpvar = $_GET["$wpvar"];
}
} else {
$$wpvar = $_POST["$wpvar"];
}
}
}