Issue
When I set a site on the Dreamweaver and configure a server ftp for the site, many times I forgot the passwords so that I want to find a way to recover it.
Solution
The Dreamweaver just gives you the option to export the site manager data.
Site=>Manage Sites=>select the site=>export
this will save on your computer a readable xml file with extension .ste
Just open it in word-pad or any other application to read the xml and search for the needed server password and get the value of the attribute pw in the tag server
Then use this javascript function to decrypte the password from this value
function decodeDreamWaverPass(hash){
var pass = '';
for (var i=0 ; i<hash.length ; i+=2){
pass+=String.fromCharCode(parseInt(hash[i]+''+hash[i+1],16)-(i/2));
}
return pass;
}
Hope that it will be helpful for you...
Answered By - George SEDRA Answer Checked By - David Goodson (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.