Hej igen
Jeg uploadede WP 2.9.2 og overskrev de eksisterende filer.
Kørte derefter installationsprocessen og dermed var den "nye" side køreklar.
Men herefter indlæser jeg så min database-backup som meddeler at "importen er korrekt gennemført, 328 forespørgsler udført.", men når jeg så går ind på siden fremkommer den samme fejl som tidligere:
Warning: require_once(lib/MemberAccess/Structure.php) [function.require-once]: failed to open stream: No such file or directory in /home/www/gpsforalle.dk/wp-content/plugins/member-access/member_access.php on line 34
Jeg forstår det simpelthen ikke, for den nævnte mappe og fil ("member_access.php") findes rent faktisk på serveren.
Indholdet af "member_access.php":
<?php
/**
* Plugin Name: Member Access
* Plugin URI: http://www.chrisabernethy.com/wordpress-plugins/member-access/
* Description: Member Access is a WordPress plugin that allows an administrator to require that users be logged-in in order to view certain posts and pages.
* Version: 1.1.1
* Author: Chris Abernethy
* Author URI: http://www.chrisabernethy.com/
* Text Domain: member_access
* Domain Path: /wp-content/plugins/member_access/locale
*
* Copyright 2008 Chris Abernethy
*
* This file is part of Member Access.
*
* Member Access is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Member Access is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Member Access. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Include all class files up-front so that we don't have to worry about the
// include path or any globals containing the plugin base path.
require_once 'lib/MemberAccess/Structure.php';
require_once 'lib/MemberAccess/Structure/Options.php';
require_once 'lib/MemberAccess/Structure/View.php';
require_once 'lib/MemberAccess.php';
// Run the plugin.
MemberAccess::run(__FILE__);
/* EOF */