Einzelnen Beitrag anzeigen
Alt 27.11.2008, 13:40   #1 (permalink)
nureinhobby
PostRank: 0
 
Registriert seit: 27.11.2008
Beiträge: 2
2.6.5: Login Admin geht, Rest nicht

Ich habe heute meine Installation von 1.5.1 auf 2.6.5 aktualisiert.

Seitdem komme ich nur noch mit dem admin-Login ins Admin-Backend.

Wenn ich versuche auf ein Userbackend zuzugreifen, lande ich immer wieder auf der Loginseite des entsprechenden Blogs. Sowohl wenn ich versuche mich als normaler User einzuloggen, als auch, wenn ich versuche als Admin auf ein User-Backend zuzugreifen.

Ich habe diverse Lösungsansätze gelesen, aber bis jetzt hat keiner funktioniert. (Änderung des Secret Salt, herausnehmen des 301-Redirects aus der .htaccess, Änderung des Zeichensatzes in der Datenbank, zusätzliche Optionen in der WP-Config).

Meine Installation ist nach dem Muster http://nureinhobby.org/*BLOGNAME* aufgebaut, derzeit sind keine Plugins aktiviert.

Meine wp-config:

PHP-Code:
<?php
/* Don't try to create this file by hand. Read the README.txt and run the installer. */
// ** MySQL settings ** //
define('DB_NAME''******');    // The name of the database
define('DB_USER''******');     // Your MySQL username
define('DB_PASSWORD''******'); // ...and password
define('DB_HOST''localhost');    // 99% chance you won't need to change this value
define('DB_CHARSET''latin1');
define('DB_COLLATE''');
define('VHOST''VHOSTSETTING'); 
$base 'BASE';

// double check $base
if( $base == 'http://nureinhobby.org/' )
    die( 
'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' );
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix  'wp_';   // Only numbers, letters, and underscores please!

// Change this to localize WordPress.  A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
// to enable German language support.
define('WPLANG''en');
// uncomment this to enable wp-content/sunrise.php support
//define( 'SUNRISE', 'on' );

define"WP_USE_MULTIPLE_DB"false );
define('SECRET_KEY''******');
define('SECRET_SALT''******');

define'LOGGED_IN_KEY''******' );
define'LOGGED_IN_SALT''******' );
define'AUTH_KEY''******' );
define'SECURE_AUTH_KEY''******' );
define'SECURE_AUTH_SALT''******' );



/* That's all, stop editing! Happy blogging. */

define('ABSPATH'dirname(__FILE__).'/');
require_once(
ABSPATH.'wp-settings.php');

?>
Meine .htaccess:
Code:
php_flag register_globals 0
php_flag display_errors 0

RewriteEngine On
RewriteBase /

# Rewrite www.domain.com to domain.com
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule ^(.*)       http://%1/$1 [R,L]

#uploaded files
RewriteRule ^(.*)?/?files/(.*) wp-content/blogs.php?file=$2 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
Any help would be appreciated
nureinhobby ist offline   Mit Zitat antworten