To add: change of password for SMS page
MatejKovacic opened this issue · 1 comments
MatejKovacic commented
To change forgotten password for SMS page:
In terminal write: echo -n "myNEWpassword" | sha1sum
You will get SHA1 hash of a password (in our case: 72358c1e53720d0b9d6bcd377516fdcc96ecb931 -
Open file: sudo nano /var/www/html/sms/index.php
and add this hash to a variable $password
:
$password = '72358c1e53720d0b9d6bcd377516fdcc96ecb931';
MatejKovacic commented
Added to main text.