[COLOR=#000080]Hallo geschätztes Forum,
ich bekomme bei der Installation von Plugins folgende Fehlermeldung:[/COLOR]
Fehlermeldung:
Warning: fileperms() [function.fileperms]: stat failed for /www/htdocs/.../.../.../index.php in www/htdocs/.../.../.../wp-admin/includes/file.php on line 871
file.php on line 871:
if ( ! defined('FS_CHMOD_FILE') )
define('FS_CHMOD_FILE', ( fileperms( ABSPATH . 'index.php' ) & 0777 | 0644 ) );
[COLOR=#000080]Ich nehme mal an das hat etwas mit der Rechtevergabe zu tun. Meine Wordpress liegt im Unterordner (http://www.meine-domain.de/wordpress_xyz/) .htaccess und index.php habe ich angepasst.[/COLOR]
.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
index.php:
...
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wordpress_xyz/wp-blog-header.php' );
[COLOR=#000080]
Kann mir einer von Euch weiterhelfen?
Danke!
[/COLOR]