Die Parameter: WP 3.8.1; BackWPup 3.1.1;
Habe das Problem, dass BackWPup nicht funktioniert. Lies sich problemlos und ohne Fehlermeldung installieren, konfigurieren und mit Dropbox verbinden. Wenn ich aber eine Sicherung durchführen will, erscheint folgende Fehlermeldung:
Warning: is_dir(): open_basdir restriction in effekt. File(/) is not within the allowed path(s): */bin:/usr/local/bin:/usr/share/php) in */wp-includes/funktions.php on line 1366
In Zeile 1366 steht: while
( '.' != $target_parent && ! is_dir( $target_parent ) )
Der ganze Abschnitt:
// safe mode fails with a trailing slash under certain PHP versions.
$target = rtrim($target, '/'); // Use rtrim() instead of untrailingslashit to avoid formatting.php dependency.
if ( empty($target) )
$target = '/';
if ( file_exists( $target ) )
return @is_dir( $target );
// We need to find the permissions of the parent folder that exists and inherit that.
$target_parent = dirname( $target );
while ( '.' != $target_parent && ! is_dir( $target_parent ) ) {
$target_parent = dirname( $target_parent ); }
Alles anzeigen
Jemand von Euch ne Idee?