Page 1 of 1

Password Encryption Enable to Disable

PostPosted: Wed Oct 21, 2020 1:22 am
by ramizuabhalim
Hi Support,

I have did the password encryption from disabled to enable. But now, i would like to change or roll back the Password Encryption from enable to disabled.

How can i do that?

Last time i have add module in cpan.

Password Encryption: ENABLED - S1 - C1 to Password Encryption: DISABLED - S1 - C1

Thanks in advance.

Version: 2.14b0.5
SVN Version: 3302
DB Schema Version: 1608
Vicibox 9

Re: Password Encryption Enable to Disable

PostPosted: Wed Oct 21, 2020 4:04 am
by striker
you may try these steps.

login to mysql console mysql -uUSERNAME -pPASSWORD
mysql>use asterisk
mysql>UPDATE system_settings set pass_hash_enabled='0';
mysql>UPDATE vicidial_users set pass='YOUR-ADMIN-PASS' where user='YOUR-ADMIN-USERID';

** replace the Highlighted fields with your details.

Re: Password Encryption Enable to Disable

PostPosted: Fri Oct 23, 2020 2:19 am
by ramizuabhalim
Hi Striker,

Yes, it's work perfectly.

:D

Thank You very much.