Hello oxwall,
Oxwall password is hashed to SHA256 right?
Can i change it to MD5?
My Personal suggestion: This is not the starting point of learning plugin development. im learning oxwall's core.
If you or making a new plugin then why ask how to change members passwords
find this near by Line No:-782
replace this
return hash('sha256', OW_PASSWORD_SALT . $password);
new line:-
return hash('md5', $password);
Try this
In ow_system_plugins/base/bol/user_service.php changefind this near by Line No:-782
replace this
return hash('sha256', OW_PASSWORD_SALT . $password);new line:-
return hash('md5', $password);
Try this