WebsiteBaker 2.13.9 R24 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<form action="{WB_URL}/account/forgot.php" method="post" class="account" autocomplete="off">
$template->set_var('WB_URL', WB_URL);
PHP Fatal error: require_once(): Failed opening required '/public_html/wb-test/framework/PasswordHash.php'
require_once(WB_PATH.'/framework/PasswordHash.php'); $pwh = new PasswordHash(0, true);
require_once(WB_PATH.'/framework/PasswordHash.php');$pwh = new PasswordHash(0, true);$old_pass = $results_array['password']; // Generate a random password then update the database with it $new_pass = $pwh->NewPassword();
. '`password`=\''.$database->escapeString($pwh->HashPassword($new_pass, true)).'\', '
$old_pass = $results_array['password'];$new_pass = '';$salt = "abchefghjkmnpqrstuv wxyz0123456789";srand((double)microtime()*1000000);$i = 0;while ($i <= 7) { $num = rand() % 33; $tmp = substr($salt, $num, 1); $new_pass = $new_pass . $tmp; $i++;}// MD5 supplied password$md5_password = md5($new_pass);
. '`password`=\''.$database->escapeString($md5_password).'\', '