I’m having the same problem. I was excited to see the quick response, and the potential for a solution, but it looks like the conversation petered out before the solution was posted. Hopefully a solution is forthcoming?
Here’s a new permutation:
I’m asked for my FTP info, as the other users were.
I had previously attempted to create a backup, which DIDN’T ask me for FTP info, but hung for a while and then resulted in a page with the text:
lib/js/ZeroClipboard.swf' } ); /**workaround for firefox versions 18 and 19. https://bugzilla.mozilla.org/show_bug.cgi?id=829557 https://github.com/jonrohan/ZeroClipboard/issues/73 */ var enableZC = true; var is_firefox18 = navigator.userAgent.toLowerCase().indexOf('firefox/18') > -1; var is_firefox19 = navigator.userAgent.toLowerCase().indexOf('firefox/19') > -1; if (is_firefox18 || is_firefox19) enableZC = false; if ( $( ".restore-backup-options" ).length ) { $( ".restore-backup-options" ).each( function() { var clip = new ZeroClipboard( $( "a.copy-button",this ) ); /** FF 18/19 users won't see an alert box. */ if (enableZC) { clip.on( 'complete', function (client, args) { alert( "Copied to clipboard:\n" + args.text ); }); } }); } else { var clip = new ZeroClipboard( $( "a.copy-button" ) ); /** FF 18/19 users won't see an alert box. */ if (enableZC) { clip.on( 'complete', function (client, args) { alert( "Copied to clipboard:\n" + args.text ); }); } } });
(No idea what to do with this.)
If I go back to the WP Clone panel, it shows no existing backup, and when I hit Backup again, THEN I’m getting the FTP details form. Which doesn’t work, as per the previous posters.
One further thing:
I found a folder in my wp-content/blogs.dir/1/files folder, named “wp-clone”, that contains a backup of SOME of my wordpress data, but leaves out a large chunk of my main blog data.
Interestingly, the backup seems to contain an infinite-recursive loop of folders, as so:
wp-content/blogs.dir/1/files/wp-clone/wpclone_backup/wp-content/blogs.dir/1/files/wp-clone/wpclone_backup/wp-content/blogs.dir/1/files/wp-clone/wpclone_backup/wp-content/blogs.dir/1/files/wp-clone/wpclone_backup/wp-content … and so on.
If I delete the wp-clone folder, and try the backup again, it again DOESN’T ask for FTP info but fails with the above code block. And then on subsequent tries it asks for FTP info again.
Thoughts?
Seth