You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after installing the addon in PS, I tried setting the configuration variables. For encryption method, I can choose between md5 and sha1 ... Chamilo currently uses the (superior) bcrypt. Is it possible that the addon doesn't know how to handle this yet?
In the file prestochamilo.php on line 396, there is only to choose between md5 and sha1.
For bcrypt, you can get the hash with this command:
$password = password_hash($password, PASSWORD_DEFAULT);
Only adding this item doesn't solve the issue. I'm assuming there are more hooks directly going to sha1 that should be flexible too...
The text was updated successfully, but these errors were encountered:
Hi,
after installing the addon in PS, I tried setting the configuration variables. For encryption method, I can choose between md5 and sha1 ... Chamilo currently uses the (superior) bcrypt. Is it possible that the addon doesn't know how to handle this yet?
In the file prestochamilo.php on line 396, there is only to choose between md5 and sha1.
For bcrypt, you can get the hash with this command:
$password = password_hash($password, PASSWORD_DEFAULT);
Only adding this item doesn't solve the issue. I'm assuming there are more hooks directly going to sha1 that should be flexible too...
The text was updated successfully, but these errors were encountered: